grim/Cargo.toml

104 lines
2.6 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"] }
grin_api = "5.3.0"
grin_chain = "5.3.0"
grin_config = "5.3.0"
grin_core = "5.3.0"
grin_p2p = "5.3.0"
grin_servers = "5.3.0"
grin_keychain = "5.3.0"
grin_util = "5.3.0"
2023-07-20 23:02:45 +03:00
## wallet
grin_wallet_impls = "5.3.0"
grin_wallet_api = "5.3.0"
grin_wallet_libwallet = "5.3.0"
grin_wallet_util = "5.3.0"
grin_wallet_controller = "5.3.0"
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", "svg"] }
2024-04-24 11:29:38 +03:00
rust-i18n = "2.3.1"
2024-05-17 19:15:25 +03:00
egui_pull_to_refresh = "0.4.0"
2023-04-10 16:02:53 +03:00
2023-07-20 23:02:45 +03:00
## other
thiserror = "1.0.58"
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"
parking_lot = "0.12.1"
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"
rand = "0.8.5"
serde_derive = "1.0.197"
serde_json = "1.0.115"
tokio = { version = "1.37.0", features = ["full"] }
image = "0.25.1"
rqrr = "0.7.1"
qrcodegen = "1.8.0"
## tor
arti = { version = "1.2.0", features = ["pt-client", "static"] }
arti-client = { version = "0.17.0", features = ["pt-client", "static", "onion-service-service"] }
tor-rtcompat = { version = "0.17.0", features = ["static"] }
tor-config = "0.17.0"
fs-mistrust = "0.7.9"
2024-04-27 02:19:40 +03:00
tor-hsservice = "0.17.0"
tor-hsrproxy = "0.17.0"
tor-keymgr = "0.17.0"
tor-llcrypto = "0.17.0"
tor-hscrypto = "0.17.0"
arti-hyper = "0.17.0"
2024-04-27 02:19:40 +03:00
sha2 = "0.10.0"
ed25519-dalek = "2.1.1"
2024-04-27 02:19:40 +03:00
curve25519-dalek = "4.1.2"
hyper = { version = "0.14.28", features = ["full"] }
hyper-tls = "0.5.0"
tls-api = "0.9.0"
tls-api-native-tls = "0.9.0"
## stratum server
2023-07-05 23:36:15 +03:00
tokio-util = { version = "0.7.8", features = ["codec"] }
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(target_vendor = "apple")'.dependencies]
tls-api-openssl = "0.9.0"
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" }
2024-05-03 22:10:19 +03:00
eframe = { version = "0.27.2", features = ["wgpu"] }
arboard = "3.2.0"
2024-05-03 22:10:19 +03:00
# camera
2024-05-21 14:12:26 +03:00
nokhwa = { git = "https://github.com/l1npengtul/nokhwa", branch = "0.10", features = ["input-native", "output-threaded"] }
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 = { version = "0.6.0", features = ["game-activity"] }
wgpu = "0.19.1"
winit = { version = "0.29.4", features = ["android-game-activity"] }
eframe = { version = "0.27.2", features = ["wgpu", "android-game-activity"] }