Skip to content

Commit

Permalink
Release v0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-orlovsky committed Jan 16, 2023
1 parent 06ae5a5 commit a356d3a
Show file tree
Hide file tree
Showing 7 changed files with 33 additions and 17 deletions.
21 changes: 15 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 10 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ license = "Apache-2.0"

[workspace.dependencies]
amplify = "4.0.0-beta.4"
cyphergraphy = { path = "cyphergraphy", version = "0.1.0" }
cypheraddr = { path = "addr", version = "0.1.0" }
eidolon-auth = { path = "eidolon", version = "0.1.0" }
socks5-client = { path = "socks5-client", version = "0.1.0" }

###
### Main package (`cyphernet`)
Expand All @@ -27,7 +31,7 @@ amplify = "4.0.0-beta.4"
name = "cyphernet"
version = "0.1.0"
description = "Cyphernet is a set of libraries for privacy-preserving networking apps"
keywords = ["privacy", "noise-framework", "noise-protocol", "cypherpunk", "mixnet", "tor", "nym", "i2p"]
keywords = ["privacy", "noise-protocol", "cypherpunk", "tor", "nym"]
categories = ["network-programming", "cryptography", "encoding"]
readme = "README.md"
authors = { workspace = true }
Expand All @@ -38,11 +42,11 @@ edition = { workspace = true }
license = { workspace = true }

[dependencies]
cyphergraphy = { path = "cyphergraphy" }
cypheraddr = { path = "addr" }
noise-framework = { path = "noise", optional = true }
eidolon = { path = "eidolon" }
socks5-client = { path = "socks5-client" }
cyphergraphy = { workspace = true }
cypheraddr = { workspace = true }
eidolon-auth = { workspace = true }
socks5-client = { workspace = true }
noise-framework = { path = "noise", version = "0.1.0", optional = true }

[features]
default = []
Expand Down
2 changes: 1 addition & 1 deletion addr/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ license = { workspace = true }

[dependencies]
amplify = { workspace = true }
cyphergraphy = { path = "../cyphergraphy", optional = true }
cyphergraphy = { workspace = true, optional = true }
sha3 = { version = "0.10.6", optional = true }
base32 = { version = "0.4.0", optional = true }
serde = { version = "1", features = ["derive"], optional = true }
Expand Down
7 changes: 5 additions & 2 deletions eidolon/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "eidolon"
name = "eidolon-auth"
version = "0.1.0"
description = "Binary authentication protocol for network connections abstracted from encryption"
keywords = ["cyphernet", "privacy", "euthentification", "network", "p2p"]
Expand All @@ -12,9 +12,12 @@ rust-version = { workspace = true }
edition = { workspace = true }
license = { workspace = true }

[lib]
name = "eidolon"

[dependencies]
amplify = { workspace = true }
cyphergraphy = { path = "../cyphergraphy" }
cyphergraphy = { worskpace = true }

[package.metadata.docs.rs]
all-features = true
Expand Down
2 changes: 1 addition & 1 deletion noise/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ license = { workspace = true }
name = "noise"

[dependencies]
cyphergraphy = { path = "../cyphergraphy" }
cyphergraphy = { workspace = true }
amplify = { workspace = true }
# Stream symmetric encoders
chacha20poly1305 = { version = "0.10.1" }
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion socks5-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ license = { workspace = true }

[dependencies]
amplify = { workspace = true }
cypheraddr = { path = "../addr" }
cypheraddr = { workspace = true }

[package.metadata.docs.rs]
all-features = true
Expand Down

0 comments on commit a356d3a

Please sign in to comment.