nymsphinx: clean up Cargo metadata (#3084)

This commit is contained in:
Jon Häggblad
2023-02-22 15:19:26 +01:00
committed by GitHub
parent 6c62332409
commit fceef1afa6
10 changed files with 10 additions and 46 deletions
+1 -5
View File
@@ -1,15 +1,11 @@
[package]
name = "nym-sphinx"
version = "0.1.0"
description = "Top-level crate for sphinx packets as used by the Nym mixnet"
edition = { workspace = true }
authors = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
readme = { workspace = true }
homepage = { workspace = true }
documentation = { workspace = true }
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rand = { version = "0.7.3", features = ["wasm-bindgen"] }
+1 -5
View File
@@ -1,15 +1,11 @@
[package]
name = "nym-sphinx-acknowledgements"
version = "0.1.0"
description = "Sphinx packet ack messages"
edition = { workspace = true }
authors = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
readme = { workspace = true }
homepage = { workspace = true }
documentation = { workspace = true }
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rand = { version = "0.7.3", features = ["wasm-bindgen"] }
+1 -5
View File
@@ -1,15 +1,11 @@
[package]
name = "nym-sphinx-addressing"
version = "0.1.0"
description = "Nym mixnet addressing"
edition = { workspace = true }
authors = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
readme = { workspace = true }
homepage = { workspace = true }
documentation = { workspace = true }
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
nym-crypto = { path = "../../crypto", features = ["asymmetric"] } # all addresses are expressed in terms on their crypto keys
@@ -1,15 +1,11 @@
[package]
name = "nym-sphinx-anonymous-replies"
version = "0.1.0"
description = "Anonymous sphinx packet replies using singly-use-reply-blocks (SURB)"
edition = { workspace = true }
authors = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
readme = { workspace = true }
homepage = { workspace = true }
documentation = { workspace = true }
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rand = { version = "0.7.3", features = ["wasm-bindgen"] }
+1 -3
View File
@@ -1,13 +1,11 @@
[package]
name = "nym-sphinx-chunking"
version = "0.1.0"
description = "Sphinx packet chunking of underlying data packets"
edition = { workspace = true }
authors = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
readme = { workspace = true }
homepage = { workspace = true }
documentation = { workspace = true }
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
+1 -5
View File
@@ -1,15 +1,11 @@
[package]
name = "nym-sphinx-cover"
version = "0.1.0"
description = "Sphinx packets used as cover traffic"
edition = { workspace = true }
authors = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
readme = { workspace = true }
homepage = { workspace = true }
documentation = { workspace = true }
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rand = { version = "0.7.3", features = ["wasm-bindgen"] }
+1 -5
View File
@@ -1,15 +1,11 @@
[package]
name = "nym-sphinx-forwarding"
version = "0.1.0"
description = "Sphinx packet forwarding as Nym mix packets"
edition = { workspace = true }
authors = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
readme = { workspace = true }
homepage = { workspace = true }
documentation = { workspace = true }
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
nym-sphinx-addressing = { path = "../addressing" }
+1 -5
View File
@@ -1,15 +1,11 @@
[package]
name = "nym-sphinx-framing"
version = "0.1.0"
description = "Sphinx packet framing for the Nym mixnet"
edition = { workspace = true }
authors = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
readme = { workspace = true }
homepage = { workspace = true }
documentation = { workspace = true }
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bytes = "1.0"
+1 -5
View File
@@ -1,15 +1,11 @@
[package]
name = "nym-sphinx-params"
version = "0.1.0"
description = "Sphinx packet parameters for the Nym mixnet"
edition = { workspace = true }
authors = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
readme = { workspace = true }
homepage = { workspace = true }
documentation = { workspace = true }
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
thiserror = "1.0.37"
+1 -3
View File
@@ -1,13 +1,11 @@
[package]
name = "nym-sphinx-types"
version = "0.1.0"
description = "Re-export sphinx packet types"
edition = { workspace = true }
authors = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
readme = { workspace = true }
homepage = { workspace = true }
documentation = { workspace = true }
[dependencies]
sphinx-packet = { version = "0.1.0" }