73 lines
No EOL
1.8 KiB
TOML
73 lines
No EOL
1.8 KiB
TOML
[workspace]
|
|
#members = ["wallet", "config"]
|
|
|
|
[package]
|
|
name = "grim"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
build = "src/build/build.rs"
|
|
|
|
[lib]
|
|
name="grim"
|
|
crate_type=["cdylib", "rlib"]
|
|
|
|
[dependencies]
|
|
log = "0.4"
|
|
|
|
## node
|
|
openssl-sys = { version = "0.9.82", features = ["vendored"] }
|
|
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" }
|
|
grin_util = { path = "../grin/node/util" }
|
|
|
|
## wallet
|
|
grin_wallet_impls = { path = "../grin/wallet/impls" }
|
|
#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"
|
|
|
|
## ui
|
|
pollster = "0.3.0"
|
|
wgpu = "0.16.1"
|
|
egui = { version = "0.22.0", default-features = false }
|
|
egui_extras = { version = "0.22.0", features = ["image"] }
|
|
|
|
## other
|
|
futures = "0.3"
|
|
dirs = "5.0.1"
|
|
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"
|
|
serde = "1"
|
|
pnet = "0.33.0"
|
|
|
|
# stratum server
|
|
serde_derive = "1"
|
|
serde_json = "1"
|
|
tokio = {version = "1.29.1", features = ["full"] }
|
|
tokio-util = { version = "0.7.8", features = ["codec"] }
|
|
rand = "0.8.5"
|
|
|
|
[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" }
|
|
eframe = { version = "0.22.0", features = [ "wgpu" ] }
|
|
|
|
[target.'cfg(target_os = "android")'.dependencies]
|
|
android_logger = "0.13.1"
|
|
jni = "0.21.1"
|
|
winit = { version = "0.28", features = [ "android-game-activity" ] }
|
|
eframe = { version = "0.22.0", features = [ "wgpu", "android-game-activity" ] } |