2023-04-10 16:02:53 +03:00
|
|
|
[package]
|
2023-05-17 00:36:59 +03:00
|
|
|
name = "grim"
|
2024-09-20 14:17:03 +03:00
|
|
|
version = "0.2.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"
|
|
|
|
|
2024-07-02 16:40:07 +03:00
|
|
|
[[bin]]
|
2024-08-01 16:16:01 +03:00
|
|
|
name = "grim"
|
2024-07-02 16:40:07 +03:00
|
|
|
path = "src/main.rs"
|
|
|
|
|
2023-07-11 16:23:10 +03:00
|
|
|
[lib]
|
|
|
|
name="grim"
|
2024-07-02 16:40:07 +03:00
|
|
|
crate-type = ["rlib"]
|
|
|
|
|
|
|
|
[profile.release-apk]
|
|
|
|
inherits = "release"
|
|
|
|
strip = true
|
2024-07-10 21:12:03 +03:00
|
|
|
opt-level = "z"
|
2024-07-02 16:40:07 +03:00
|
|
|
lto = true
|
|
|
|
codegen-units = 1
|
|
|
|
panic = "abort"
|
2023-07-11 16:23:10 +03:00
|
|
|
|
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-07-07 19:21:57 +03:00
|
|
|
egui = { version = "0.28.1", default-features = false }
|
|
|
|
egui_extras = { version = "0.28.1", features = ["image", "svg"] }
|
2024-04-24 11:29:38 +03:00
|
|
|
rust-i18n = "2.3.1"
|
2023-04-10 16:02:53 +03:00
|
|
|
|
2023-07-20 23:02:45 +03:00
|
|
|
## other
|
2024-08-07 19:14:11 +03:00
|
|
|
backtrace = "0.3"
|
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-06-04 11:02:18 +03:00
|
|
|
rkv = { version = "0.19.0", features = ["lmdb"] }
|
2024-04-25 15:15:00 +03:00
|
|
|
|
|
|
|
## tor
|
2024-06-07 03:10:21 +03:00
|
|
|
arti-client = { version = "0.19.0", features = ["pt-client", "static", "onion-service-service", "onion-service-client"] }
|
|
|
|
tor-rtcompat = { version = "0.19.0", features = ["static"] }
|
|
|
|
tor-config = "0.19.0"
|
2024-04-25 15:15:00 +03:00
|
|
|
fs-mistrust = "0.7.9"
|
2024-06-07 03:10:21 +03:00
|
|
|
tor-hsservice = "0.19.0"
|
|
|
|
tor-hsrproxy = "0.19.0"
|
|
|
|
tor-keymgr = "0.19.0"
|
|
|
|
tor-llcrypto = "0.19.0"
|
|
|
|
tor-hscrypto = "0.19.0"
|
|
|
|
arti-hyper = "0.19.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
|
2024-08-01 13:08:37 +03:00
|
|
|
tokio-old = {version = "0.2", features = ["full"], package = "tokio" }
|
|
|
|
tokio-util-old = { version = "0.2", features = ["codec"], package = "tokio-util" }
|
2023-04-21 03:45:59 +03:00
|
|
|
|
2024-06-17 14:31:55 +03:00
|
|
|
[target.'cfg(all(not(target_os = "windows"), not(target_os = "android")))'.dependencies]
|
|
|
|
eye = { version = "0.5.0", default-features = false }
|
|
|
|
|
|
|
|
[target.'cfg(target_os = "windows")'.dependencies]
|
|
|
|
nokhwa = { version = "0.10.4", default-features = false, features = ["input-msmf"] }
|
|
|
|
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
2024-05-08 22:19:33 +03:00
|
|
|
tls-api-openssl = "0.9.0"
|
2024-06-18 13:25:23 +03:00
|
|
|
openpnp_capture_sys = "0.4.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-07-07 19:21:57 +03:00
|
|
|
eframe = { version = "0.28.1", features = ["wgpu", "glow"] }
|
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-09-11 17:01:05 +03:00
|
|
|
interprocess = { version = "2.2.1", features = ["tokio"] }
|
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-06-27 12:30:27 +03:00
|
|
|
wgpu = "0.20.1"
|
2024-05-22 14:12:00 +03:00
|
|
|
winit = { version = "0.29.15", features = ["android-game-activity"] }
|
2024-07-07 19:21:57 +03:00
|
|
|
eframe = { version = "0.28.1", features = ["wgpu", "android-game-activity"] }
|
2024-06-20 22:52:12 +03:00
|
|
|
|
2024-07-07 19:21:57 +03:00
|
|
|
[patch.crates-io]
|
2024-06-20 22:52:12 +03:00
|
|
|
### patch grin store
|
|
|
|
#grin_store = { path = "../grin-store" }
|
|
|
|
### fix cross-compilation support for macos
|
2024-07-07 19:21:57 +03:00
|
|
|
openpnp_capture_sys = { git = "https://github.com/ardocrat/openpnp-capture-rs", branch = "cross_compilation_support" }
|