2023-04-10 16:02:53 +03:00
|
|
|
[workspace]
|
|
|
|
#members = ["wallet", "config"]
|
|
|
|
|
|
|
|
[package]
|
2023-05-17 00:36:59 +03:00
|
|
|
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
|
|
|
|
2023-04-21 03:45:59 +03:00
|
|
|
## ui
|
2023-10-04 16:16:30 +03:00
|
|
|
egui = { version = "0.23.0", default-features = false }
|
|
|
|
egui_extras = { version = "0.23.0", features = ["image"] }
|
2023-07-28 00:00:57 +03:00
|
|
|
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"
|
2023-04-21 03:45:59 +03:00
|
|
|
sys-locale = "0.3.0"
|
2024-04-14 13:57:49 +03:00
|
|
|
chrono = "0.4.37"
|
2023-05-23 01:46:42 +03:00
|
|
|
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"
|
2023-07-28 00:00:57 +03:00
|
|
|
pnet = "0.34.0"
|
2023-07-25 03:42:52 +03:00
|
|
|
url = "2.4.0"
|
2023-07-03 21:17:49 +03:00
|
|
|
|
|
|
|
# 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-21 03:45:59 +03:00
|
|
|
|
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"
|
2023-07-07 03:50:08 +03:00
|
|
|
winit = { version = "0.28" }
|
2023-10-04 16:16:30 +03:00
|
|
|
eframe = { version = "0.23.0", features = [ "wgpu" ] }
|
2023-08-17 16:45:46 +03:00
|
|
|
arboard = "3.2.0"
|
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-08-01 01:03:51 +03:00
|
|
|
android-activity = "0.4.3"
|
2023-07-13 18:44:37 +03:00
|
|
|
winit = { version = "0.28", features = [ "android-game-activity" ] }
|
2023-10-04 16:16:30 +03:00
|
|
|
eframe = { version = "0.23.0", features = [ "wgpu", "android-game-activity" ] }
|