2d3b4f4b91
* Added github actions templates * removed travis .yml file * initial clippy cleanup pass * fixed the rest of clippy warnings * Made github badges more fancy and consistent with the ones in sphinx * Updated local rustc version and removed compilation warningns * ... and fresh clippy warnings * formatting * beta clippy specific warnings fixed * Fixed all nightly clippy warnings * Fixed trying to unwrap a () * Actually running all tests * Correctly passing the --all flag * Hopefullly third time's a charm in fixing argument passing
15 lines
574 B
TOML
15 lines
574 B
TOML
[package]
|
|
name = "nymsphinx-addressing"
|
|
version = "0.1.0"
|
|
authors = ["Jedrzej Stuczynski <andrew@nymtech.net>"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
crypto = { path = "../../crypto" } # all addresses are expressed in terms on their crypto keys
|
|
nymsphinx-types = { path = "../types" } # we need to be able to refer to some types defined inside sphinx crate
|
|
serde = "1.0" # implementing serialization/deserialization for some types, like `Recipient`
|
|
|
|
[dev-dependencies]
|
|
rand = "0.7" |