grim/Cargo.toml

74 lines
1.8 KiB
TOML
Raw Normal View History

2023-04-10 16:02:53 +03:00
[workspace]
#members = ["wallet", "config"]
[package]
name = "grim"
2023-04-10 16:02:53 +03:00
version = "0.1.0"
edition = "2021"
build = "src/build/build.rs"
2023-07-11 16:23:10 +03:00
[lib]
name="grim"
crate_type=["cdylib", "rlib"]
2023-04-10 16:02:53 +03:00
[features]
#static_ssl = ['openssl/vendored']
[dependencies]
log = "0.4"
#android-activity = { version = "0.4", features = ["game-activity"] }
grin_api = { path = "../grin/node/api" }
grin_chain = { path = "../grin/node/chain" }
grin_config = { path = "../grin/node/config" }
grin_core = { path = "../grin/node/core" }
grin_keychain = { path = "../grin/node/keychain" }
grin_p2p = { path = "../grin/node/p2p" }
grin_servers = { path = "../grin/node/servers" }
2023-04-12 21:52:35 +03:00
#grin_store = "5.1.2"
grin_util = { path = "../grin/node/util" }
openssl-sys = { version = "0.9.82", features = ["vendored"] }
2023-04-10 16:02:53 +03:00
#grin_wallet_api = "5.1.0"
#grin_wallet_libwallet = "5.1.0"
#grin_wallet_controller = "5.1.0"
#grin_wallet_config = "5.1.0"
#grin_wallet_util = "5.1.0"
2023-04-10 23:46:07 +03:00
## ui
2023-04-10 16:02:53 +03:00
pollster = "0.3.0"
wgpu = "0.16.0"
egui = { version = "0.22.0", default-features = false }
egui_extras = { version = "0.22.0" }
eframe = { version = "0.22.0", features = [ "wgpu", "android-game-activity" ] }
2023-04-10 16:02:53 +03:00
## grin_servers
futures = "0.3"
2023-07-05 23:36:15 +03:00
dirs = "5.0.1"
2023-04-10 16:02:53 +03:00
## other
once_cell = "1.10.0"
rust-i18n = "2.0.0"
sys-locale = "0.3.0"
chrono = "0.4.23"
lazy_static = "1.4.0"
toml = "0.7.4"
2023-07-05 23:36:15 +03:00
serde = "1"
pnet = "0.33.0"
# stratum server
serde_derive = "1"
serde_json = "1"
2023-07-05 23:36:15 +03:00
tokio = {version = "1.29.1", features = ["full"] }
tokio-util = { version = "0.7.8", features = ["codec"] }
rand = "0.8.5"
2023-04-10 16:02:53 +03:00
[build-dependencies]
built = { version = "0.6.0", features = ["git2"]}
[target.'cfg(not(target_os = "android"))'.dependencies]
env_logger = "0.10.0"
winit = { version = "0.28" }
2023-04-10 16:02:53 +03:00
[target.'cfg(target_os = "android")'.dependencies]
android_logger = "0.13.1"
2023-04-12 21:52:35 +03:00
jni = "0.21.1"
2023-07-11 16:23:10 +03:00
winit = { version = "0.28", features = [ "android-game-activity" ] }