2023-04-10 16:02:53 +03:00
|
|
|
[package]
|
2023-05-17 00:36:59 +03:00
|
|
|
name = "grim"
|
2023-04-10 16:02:53 +03:00
|
|
|
version = "0.1.0"
|
2024-05-29 12:13:53 +03:00
|
|
|
authors = ["Ardocrat <ardocrat@proton.me>"]
|
|
|
|
description = "Cross-platform GUI for Grin with focus on usability and availability to be used by anyone, anywhere."
|
|
|
|
license = "Apache-2.0"
|
|
|
|
repository = "https://github.com/ardocrat/grim"
|
|
|
|
keywords = [ "crypto", "grin", "mimblewimble" ]
|
2023-04-10 16:02:53 +03:00
|
|
|
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-05-27 02:26:13 +03:00
|
|
|
grin_api = "5.3.1"
|
|
|
|
grin_chain = "5.3.1"
|
|
|
|
grin_config = "5.3.1"
|
|
|
|
grin_core = "5.3.1"
|
|
|
|
grin_p2p = "5.3.1"
|
|
|
|
grin_servers = "5.3.1"
|
|
|
|
grin_keychain = "5.3.1"
|
|
|
|
grin_util = "5.3.1"
|
2023-07-20 23:02:45 +03:00
|
|
|
|
|
|
|
## wallet
|
2024-05-27 02:26:13 +03:00
|
|
|
grin_wallet_impls = "5.3.1"
|
|
|
|
grin_wallet_api = "5.3.1"
|
|
|
|
grin_wallet_libwallet = "5.3.1"
|
|
|
|
grin_wallet_util = "5.3.1"
|
|
|
|
grin_wallet_controller = "5.3.1"
|
2023-04-10 23:46:07 +03:00
|
|
|
|
2023-04-21 03:45:59 +03:00
|
|
|
## ui
|
2024-04-16 15:24:22 +03:00
|
|
|
egui = { version = "0.27.2", default-features = false }
|
2024-05-04 12:20:35 +03:00
|
|
|
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
|
2024-04-18 16:55:37 +03:00
|
|
|
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"
|
2023-04-21 03:45:59 +03:00
|
|
|
sys-locale = "0.3.0"
|
2024-04-16 15:24:22 +03:00
|
|
|
chrono = "0.4.31"
|
2024-05-14 17:36:49 +03:00
|
|
|
parking_lot = "0.12.1"
|
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"
|
2024-04-16 15:24:22 +03:00
|
|
|
local-ip-address = "0.6.1"
|
2023-07-25 03:42:52 +03:00
|
|
|
url = "2.4.0"
|
2024-04-25 15:15:00 +03:00
|
|
|
rand = "0.8.5"
|
2024-04-16 15:24:22 +03:00
|
|
|
serde_derive = "1.0.197"
|
|
|
|
serde_json = "1.0.115"
|
2024-04-25 15:15:00 +03:00
|
|
|
tokio = { version = "1.37.0", features = ["full"] }
|
2024-05-04 12:20:35 +03:00
|
|
|
image = "0.25.1"
|
2024-05-03 19:51:57 +03:00
|
|
|
rqrr = "0.7.1"
|
2024-05-04 12:20:35 +03:00
|
|
|
qrcodegen = "1.8.0"
|
2024-05-30 17:27:55 +03:00
|
|
|
qrcode = "0.14.0"
|
2024-05-27 00:20:16 +03:00
|
|
|
ur = "0.4.1"
|
2024-05-27 16:53:18 +03:00
|
|
|
gif = "0.13.1"
|
2024-04-25 15:15:00 +03:00
|
|
|
|
|
|
|
## tor
|
2024-05-27 02:26:13 +03:00
|
|
|
arti-client = { version = "0.18.0", features = ["pt-client", "static", "onion-service-service", "onion-service-client"] }
|
|
|
|
tor-rtcompat = { version = "0.18.0", features = ["static"] }
|
|
|
|
tor-config = "0.18.0"
|
2024-04-25 15:15:00 +03:00
|
|
|
fs-mistrust = "0.7.9"
|
2024-05-27 02:26:13 +03:00
|
|
|
tor-hsservice = "0.18.0"
|
|
|
|
tor-hsrproxy = "0.18.0"
|
|
|
|
tor-keymgr = "0.18.0"
|
|
|
|
tor-llcrypto = "0.18.0"
|
|
|
|
tor-hscrypto = "0.18.0"
|
|
|
|
arti-hyper = "0.18.0"
|
2024-04-27 02:19:40 +03:00
|
|
|
sha2 = "0.10.0"
|
2024-04-30 18:15:03 +03:00
|
|
|
ed25519-dalek = "2.1.1"
|
2024-04-27 02:19:40 +03:00
|
|
|
curve25519-dalek = "4.1.2"
|
2024-04-30 18:15:03 +03:00
|
|
|
hyper = { version = "0.14.28", features = ["full"] }
|
2024-05-16 16:52:56 +03:00
|
|
|
hyper-tls = "0.5.0"
|
2024-04-30 18:15:03 +03:00
|
|
|
tls-api = "0.9.0"
|
|
|
|
tls-api-native-tls = "0.9.0"
|
2024-04-25 15:15:00 +03:00
|
|
|
|
|
|
|
## stratum server
|
2023-07-05 23:36:15 +03:00
|
|
|
tokio-util = { version = "0.7.8", features = ["codec"] }
|
2023-04-21 03:45:59 +03:00
|
|
|
|
2024-05-29 12:13:53 +03:00
|
|
|
### patch grin store
|
|
|
|
#grin_store = "5.3.1"
|
|
|
|
#[patch.crates-io]
|
|
|
|
#grin_store = { path = "../grin-store" }
|
|
|
|
|
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
|
|
|
|
2024-05-08 22:19:33 +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]
|
2024-05-27 02:26:13 +03:00
|
|
|
env_logger = "0.11.3"
|
2024-04-16 15:24:22 +03:00
|
|
|
winit = { version = "0.29.15" }
|
2024-05-03 22:10:19 +03:00
|
|
|
eframe = { version = "0.27.2", features = ["wgpu"] }
|
2023-08-17 16:45:46 +03:00
|
|
|
arboard = "3.2.0"
|
2024-05-27 16:53:18 +03:00
|
|
|
rfd = "0.14.1"
|
2024-05-29 23:29:33 +03:00
|
|
|
dark-light = "1.1.1"
|
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"
|
2024-04-27 02:30:00 +03:00
|
|
|
android-activity = { version = "0.6.0", features = ["game-activity"] }
|
2024-04-30 18:15:03 +03:00
|
|
|
wgpu = "0.19.1"
|
2024-05-22 14:12:00 +03:00
|
|
|
winit = { version = "0.29.15", features = ["android-game-activity"] }
|
2024-06-03 18:34:13 +03:00
|
|
|
eframe = { version = "0.27.2", features = ["wgpu", "glow", "android-game-activity"] }
|