67c92b3e56
* Moved definition of mixnet contract common items to separate module * Removed schemars dependency from being wasm32 specific * Moved query responses to the shared module * Fixed tests due to differerent import paths * Updated dashmap in other crates to help with once_cell version selection * Reexporting coin and humanaddr * Deserializing response from validator * Deserializing smart result directly to specific type * Ability to query for mixnodes and gateways from rust * Fixed compilation warning due to updated dashmap
16 lines
448 B
TOML
16 lines
448 B
TOML
[package]
|
|
name = "validator-client-rest"
|
|
version = "0.1.0"
|
|
authors = ["Jędrzej Stuczyński <andrew@nymtech.net>"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
base64 = "0.13"
|
|
mixnet-contract = { path = "../../../common/mixnet-contract" }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
reqwest = { version = "0.11", features = ["json"] }
|
|
|