Skip to content
This repository has been archived by the owner on Sep 21, 2024. It is now read-only.

Commit

Permalink
dev: initial work on NameSystem, wrapping the underlying DHT network.
Browse files Browse the repository at this point in the history
  • Loading branch information
jsantell committed Nov 1, 2022
1 parent 1a0625a commit 6b0dc5e
Show file tree
Hide file tree
Showing 15 changed files with 968 additions and 234 deletions.
196 changes: 65 additions & 131 deletions Cargo.lock

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

6 changes: 5 additions & 1 deletion rust/noosphere-ns/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,19 @@ readme = "README.md"
[dependencies]
anyhow = "^1"
tracing = "0.1"
cid = "~0.8"
serde = "^1"
serde_json = "^1"

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
noosphere-core = { version = "0.1.0-alpha.1", path = "../noosphere-core" }
ucan-key-support = { version = "0.7.0-alpha.1" }
futures = "0.3.1"
tokio = { version = "1.15", features = ["io-util", "io-std", "sync", "macros", "rt", "rt-multi-thread"] }
tracing-subscriber = { version = "~0.3", features = ["env-filter"] }
libp2p = { version = "0.49.0", default-features = false, features = [ "identify", "dns", "tcp", "tokio", "noise", "mplex", "yamux", "kad" ] }
ucan = { version = "0.7.0-alpha.1" }

[dev-dependencies]
rand = { version = "0.8.5" }
test-log = { version = "0.2.11", default-features = false, features = ["trace"] }
tracing-subscriber = { version = "~0.3", features = ["env-filter"] }
Loading

0 comments on commit 6b0dc5e

Please sign in to comment.