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]
|
|
|
|
blake2 = { package = "blake2-rfc", version = "0.2"}
|
|
|
|
byteorder = "1"
|
|
|
|
bytes = "0.5.6"
|
|
|
|
chacha20 = "0.8.1"
|
2022-02-11 04:33:35 +03:00
|
|
|
clap = { version = "2.33", features = ["yaml"] }
|
2021-11-12 19:09:11 +03:00
|
|
|
failure = "0.1.8"
|
|
|
|
futures = "0.3"
|
2022-02-11 04:33:35 +03:00
|
|
|
hmac = { version = "0.12.0", features = ["std"]}
|
2021-11-12 19:09:11 +03:00
|
|
|
hyper = { version = "0.14", features = ["full"] }
|
|
|
|
jsonrpc-core = "18.0"
|
|
|
|
jsonrpc-derive = "18.0"
|
|
|
|
jsonrpc-http-server = "18.0"
|
|
|
|
lazy_static = "1"
|
2022-02-11 04:33:35 +03:00
|
|
|
pbkdf2 = "0.8.0"
|
2021-11-12 19:09:11 +03:00
|
|
|
rand = "0.8.4"
|
2022-02-11 04:33:35 +03:00
|
|
|
ring = "0.16"
|
2021-11-12 19:09:11 +03:00
|
|
|
serde = { version = "1", features= ["derive"]}
|
|
|
|
serde_derive = "1"
|
|
|
|
serde_json = "1"
|
2022-02-11 04:33:35 +03:00
|
|
|
sha2 = "0.10.0"
|
2021-11-12 19:09:11 +03:00
|
|
|
tokio = { version = "1", features = ["full"] }
|
2022-02-11 04:33:35 +03:00
|
|
|
toml = "0.5"
|
2021-11-12 19:09:11 +03:00
|
|
|
grin_secp256k1zkp = { version = "0.7.11", features = ["bullet-proof-sizing"]}
|
2022-02-11 04:33:35 +03:00
|
|
|
grin_util = "5"
|
|
|
|
grin_api = { git = "https://github.com/mimblewimble/grin", version = "5.2.0-alpha.1" }
|
|
|
|
grin_core = { git = "https://github.com/mimblewimble/grin", version = "5.2.0-alpha.1" }
|
|
|
|
grin_chain = { git = "https://github.com/mimblewimble/grin", version = "5.2.0-alpha.1" }
|
|
|
|
grin_keychain = { git = "https://github.com/mimblewimble/grin", version = "5.2.0-alpha.1" }
|
|
|
|
grin_servers = { git = "https://github.com/mimblewimble/grin", version = "5.2.0-alpha.1" }
|
2022-04-27 06:13:44 +03:00
|
|
|
grin_wallet_api = { git = "https://github.com/mimblewimble/grin-wallet", branch = "master" }
|
|
|
|
grin_wallet_impls = { git = "https://github.com/mimblewimble/grin-wallet", branch = "master" }
|
|
|
|
grin_wallet_libwallet = { git = "https://github.com/mimblewimble/grin-wallet", branch = "master" }
|