grim/Cargo.toml

70 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"
[features]
#static_ssl = ['openssl/vendored']
[dependencies]
log = "0.4"
#android-activity = { version = "0.4", features = ["game-activity"] }
2023-04-12 21:52:35 +03:00
#grin_api = "5.1.2"
grin_chain = { git = "https://github.com/mimblewimble/grin.git" }
grin_config = { git = "https://github.com/mimblewimble/grin.git" }
grin_core = { git = "https://github.com/mimblewimble/grin.git" }
2023-04-12 21:52:35 +03:00
#grin_keychain = "5.1.2"
#grin_p2p = "5.1.2"
grin_servers = { git = "https://github.com/mimblewimble/grin.git" }
2023-04-12 21:52:35 +03:00
#grin_store = "5.1.2"
grin_util = { git = "https://github.com/mimblewimble/grin.git" }
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.14.0"
egui = { version = "0.20.1", default-features = false }
2023-05-04 20:09:26 +03:00
egui_extras = { version = "0.20.0" }
2023-04-12 21:52:35 +03:00
eframe = { version = "0.20.1", features = [ "wgpu" ] }
egui_demo_lib = "0.20.0"
2023-04-10 16:02:53 +03:00
## grin_servers
futures = "0.3"
2023-05-04 20:09:26 +03:00
dirs = "2.0"
2023-04-10 16:02:53 +03:00
## other
once_cell = "1.10.0"
rust-i18n = "1.1.4"
sys-locale = "0.3.0"
chrono = "0.4.23"
lazy_static = "1.4.0"
toml = "0.7.4"
serde = "1.0.164"
2023-04-11 00:11:21 +03:00
[patch.crates-io]
2023-04-12 21:52:35 +03:00
winit = { git = "https://github.com/rib/winit", branch = "android-activity" }
2023-04-11 00:11:21 +03:00
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"
2023-04-12 21:52:35 +03:00
winit = { version = "0.27.2" }
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"
winit = { version = "0.27.2", features = [ "android-game-activity" ] }
2023-04-10 16:02:53 +03:00
[lib]
name="grim"
2023-04-10 16:02:53 +03:00
crate_type=["cdylib"]