2021-11-12 19:09:11 +03:00
|
|
|
[package]
|
|
|
|
name = "mwixnet"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2024-05-16 17:16:20 +03:00
|
|
|
arti-client = { version = "0.18.0", default-features = false, features = ["async-std", "rustls", "onion-service-client", "onion-service-service"] }
|
|
|
|
arti-hyper = "0.18.0"
|
2024-04-16 18:16:53 +03:00
|
|
|
async-std = { version = "1", features = ["tokio1"] }
|
2023-12-19 03:12:05 +03:00
|
|
|
async-trait = "0.1.74"
|
2024-04-16 18:16:53 +03:00
|
|
|
blake2 = { package = "blake2-rfc", version = "0.2" }
|
2021-11-12 19:09:11 +03:00
|
|
|
byteorder = "1"
|
2023-12-19 03:12:05 +03:00
|
|
|
bytes = "1.5.0"
|
|
|
|
chacha20 = "0.9.1"
|
|
|
|
chrono = "0.4.31"
|
2022-02-11 04:33:35 +03:00
|
|
|
clap = { version = "2.33", features = ["yaml"] }
|
2023-12-19 03:12:05 +03:00
|
|
|
ctrlc = { version = "3.1", features = ["termination"] }
|
2024-04-16 18:16:53 +03:00
|
|
|
curve25519-dalek = "4.1.2"
|
2022-07-22 17:47:04 +03:00
|
|
|
dirs = "2.0"
|
2024-04-16 18:16:53 +03:00
|
|
|
ed25519-dalek = "2.1.1"
|
2023-01-08 00:09:04 +03:00
|
|
|
function_name = "0.3.0"
|
2021-11-12 19:09:11 +03:00
|
|
|
futures = "0.3"
|
2024-04-16 18:16:53 +03:00
|
|
|
fs-mistrust = "0.7.9"
|
|
|
|
hmac = { version = "0.12.0", features = ["std"] }
|
|
|
|
hyper = "0.14.28"
|
|
|
|
hyper-tls = "0.6.0"
|
2023-12-19 03:12:05 +03:00
|
|
|
itertools = { version = "0.12.0" }
|
2024-04-16 18:16:53 +03:00
|
|
|
jsonrpc-core = "18.0.0"
|
|
|
|
jsonrpc-derive = "18.0.0"
|
|
|
|
jsonrpc-http-server = "18.0.0"
|
2021-11-12 19:09:11 +03:00
|
|
|
lazy_static = "1"
|
2022-02-11 04:33:35 +03:00
|
|
|
pbkdf2 = "0.8.0"
|
2022-10-13 18:15:52 +03:00
|
|
|
rand = "0.7.3"
|
2023-12-19 03:12:05 +03:00
|
|
|
remove_dir_all = "0.8.2"
|
2022-02-11 04:33:35 +03:00
|
|
|
ring = "0.16"
|
2022-07-01 12:33:34 +03:00
|
|
|
rpassword = "4.0"
|
2024-05-01 20:22:02 +03:00
|
|
|
rusqlite = { version = "0.31.0", features = ["bundled"] }
|
2024-04-16 18:16:53 +03:00
|
|
|
serde = { version = "1", features = ["derive"] }
|
2021-11-12 19:09:11 +03:00
|
|
|
serde_derive = "1"
|
|
|
|
serde_json = "1"
|
2022-02-11 04:33:35 +03:00
|
|
|
sha2 = "0.10.0"
|
2023-12-19 03:12:05 +03:00
|
|
|
thiserror = "1.0.30"
|
2024-04-16 18:16:53 +03:00
|
|
|
tls-api = "0.9.0"
|
|
|
|
tls-api-native-tls = "0.9.0"
|
|
|
|
tokio = { version = "1.37.0", features = ["full"] }
|
2023-12-19 03:12:05 +03:00
|
|
|
toml = "0.8.8"
|
2024-05-16 17:16:20 +03:00
|
|
|
tor-hscrypto = "0.18.0"
|
|
|
|
tor-hsrproxy = "0.18.0"
|
|
|
|
tor-hsservice = "0.18.0"
|
|
|
|
tor-llcrypto = "0.18.0"
|
|
|
|
tor-keymgr = "0.18.0"
|
|
|
|
tor-rtcompat = "0.18.0"
|
2022-10-13 18:15:52 +03:00
|
|
|
x25519-dalek = "0.6.0"
|
2024-08-27 15:45:52 +03:00
|
|
|
log = "0.4.20"
|
|
|
|
|
|
|
|
# Bleeding Edge Grin Deps
|
2024-05-16 17:16:20 +03:00
|
|
|
grin_secp256k1zkp = { version = "0.7.14", features = ["bullet-proof-sizing"] }
|
2024-08-27 15:45:52 +03:00
|
|
|
grin_api = { git = "https://github.com/mimblewimble/grin", branch = "master" }
|
|
|
|
grin_core = { git = "https://github.com/mimblewimble/grin", branch = "master" }
|
|
|
|
grin_chain = { git = "https://github.com/mimblewimble/grin", branch = "master" }
|
|
|
|
grin_keychain = { 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_store = { git = "https://github.com/mimblewimble/grin", branch = "master" }
|
|
|
|
grin_util = { git = "https://github.com/mimblewimble/grin", branch = "master" }
|
|
|
|
grin_wallet_api = { git = "https://github.com/mimblewimble/grin-wallet", branch = "contracts" }
|
|
|
|
grin_wallet_config = { git = "https://github.com/mimblewimble/grin-wallet", branch = "contracts" }
|
|
|
|
grin_wallet_controller = { git = "https://github.com/mimblewimble/grin-wallet", branch = "contracts" }
|
|
|
|
grin_wallet_impls = { git = "https://github.com/mimblewimble/grin-wallet", branch = "contracts" }
|
|
|
|
grin_wallet_libwallet = { git = "https://github.com/mimblewimble/grin-wallet", branch = "contracts" }
|
|
|
|
grin_wallet_util = { git = "https://github.com/mimblewimble/grin-wallet", branch = "contracts" }
|