Skip to content

Commit a356d3a

Browse files
committed
Release v0.1
1 parent 06ae5a5 commit a356d3a

File tree

7 files changed

+33
-17
lines changed

7 files changed

+33
-17
lines changed

Cargo.lock

Lines changed: 15 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ license = "Apache-2.0"
1818

1919
[workspace.dependencies]
2020
amplify = "4.0.0-beta.4"
21+
cyphergraphy = { path = "cyphergraphy", version = "0.1.0" }
22+
cypheraddr = { path = "addr", version = "0.1.0" }
23+
eidolon-auth = { path = "eidolon", version = "0.1.0" }
24+
socks5-client = { path = "socks5-client", version = "0.1.0" }
2125

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

4044
[dependencies]
41-
cyphergraphy = { path = "cyphergraphy" }
42-
cypheraddr = { path = "addr" }
43-
noise-framework = { path = "noise", optional = true }
44-
eidolon = { path = "eidolon" }
45-
socks5-client = { path = "socks5-client" }
45+
cyphergraphy = { workspace = true }
46+
cypheraddr = { workspace = true }
47+
eidolon-auth = { workspace = true }
48+
socks5-client = { workspace = true }
49+
noise-framework = { path = "noise", version = "0.1.0", optional = true }
4650

4751
[features]
4852
default = []

addr/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ license = { workspace = true }
1414

1515
[dependencies]
1616
amplify = { workspace = true }
17-
cyphergraphy = { path = "../cyphergraphy", optional = true }
17+
cyphergraphy = { workspace = true, optional = true }
1818
sha3 = { version = "0.10.6", optional = true }
1919
base32 = { version = "0.4.0", optional = true }
2020
serde = { version = "1", features = ["derive"], optional = true }

eidolon/Cargo.toml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
name = "eidolon"
2+
name = "eidolon-auth"
33
version = "0.1.0"
44
description = "Binary authentication protocol for network connections abstracted from encryption"
55
keywords = ["cyphernet", "privacy", "euthentification", "network", "p2p"]
@@ -12,9 +12,12 @@ rust-version = { workspace = true }
1212
edition = { workspace = true }
1313
license = { workspace = true }
1414

15+
[lib]
16+
name = "eidolon"
17+
1518
[dependencies]
1619
amplify = { workspace = true }
17-
cyphergraphy = { path = "../cyphergraphy" }
20+
cyphergraphy = { worskpace = true }
1821

1922
[package.metadata.docs.rs]
2023
all-features = true

noise/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ license = { workspace = true }
1616
name = "noise"
1717

1818
[dependencies]
19-
cyphergraphy = { path = "../cyphergraphy" }
19+
cyphergraphy = { workspace = true }
2020
amplify = { workspace = true }
2121
# Stream symmetric encoders
2222
chacha20poly1305 = { version = "0.10.1" }
File renamed without changes.

socks5-client/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ license = { workspace = true }
1414

1515
[dependencies]
1616
amplify = { workspace = true }
17-
cypheraddr = { path = "../addr" }
17+
cypheraddr = { workspace = true }
1818

1919
[package.metadata.docs.rs]
2020
all-features = true

0 commit comments

Comments
 (0)