grim/Cargo.toml

73 lines
2.4 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
[dependencies]
log = "0.4"
2023-07-20 23:02:45 +03:00
## node
openssl-sys = { version = "0.9.82", features = ["vendored"] }
2024-04-14 13:57:49 +03:00
grin_api = { git = "https://github.com/mimblewimble/grin", branch = "master" }
grin_chain = { git = "https://github.com/mimblewimble/grin", branch = "master" }
grin_config = { git = "https://github.com/mimblewimble/grin", branch = "master" }
grin_core = { git = "https://github.com/mimblewimble/grin", branch = "master" }
grin_p2p = { git = "https://github.com/mimblewimble/grin", branch = "master" }
grin_servers = { git = "https://github.com/mimblewimble/grin", branch = "master" }
grin_keychain = { git = "https://github.com/mimblewimble/grin", branch = "master" }
grin_util = { git = "https://github.com/mimblewimble/grin", branch = "master" }
2023-07-20 23:02:45 +03:00
## wallet
2024-04-14 13:57:49 +03:00
grin_wallet_impls = { git = "https://github.com/mimblewimble/grin-wallet", branch = "master" }
grin_wallet_api = { git = "https://github.com/mimblewimble/grin-wallet", branch = "master" }
grin_wallet_libwallet = { git = "https://github.com/mimblewimble/grin-wallet", branch = "master" }
grin_wallet_util = { git = "https://github.com/mimblewimble/grin-wallet", branch = "master" }
grin_wallet_controller = { git = "https://github.com/mimblewimble/grin-wallet", branch = "master" }
2023-04-10 23:46:07 +03:00
## ui
egui = { version = "0.27.2", default-features = false }
egui_extras = { version = "0.27.2", features = ["image"] }
rust-i18n = "2.1.0"
2023-04-10 16:02:53 +03:00
2023-07-20 23:02:45 +03:00
## other
2023-04-10 16:02:53 +03:00
futures = "0.3"
2023-07-05 23:36:15 +03:00
dirs = "5.0.1"
sys-locale = "0.3.0"
chrono = "0.4.31"
lazy_static = "1.4.0"
2023-11-08 22:30:02 +03:00
toml = "0.8.2"
2023-08-21 08:31:12 +03:00
serde = "1.0.170"
local-ip-address = "0.6.1"
url = "2.4.0"
## stratum server
serde_derive = "1.0.197"
serde_json = "1.0.115"
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]
2023-11-08 22:30:02 +03:00
built = { version = "0.7.0", features = ["git2"]}
2023-04-10 16:02:53 +03:00
[target.'cfg(not(target_os = "android"))'.dependencies]
env_logger = "0.10.0"
winit = { version = "0.29.15" }
eframe = { version = "0.27.2", features = [ "wgpu" ] }
arboard = "3.2.0"
2024-04-17 01:32:44 +03:00
image = "0.25.1"
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"
android-activity = "0.5.2"
winit = { version = "0.29", features = [ "android-game-activity" ] }
eframe = { version = "0.27.2", features = [ "wgpu", "android-game-activity" ] }