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

Commit

Permalink
Initial work on noosphere-p2p, the libp2p-based DHT underpinings of…
Browse files Browse the repository at this point in the history
… a name system. (#93)

* Initial work on noosphere-p2p, the libp2p-based DHT underpinings of a name system.

* Revise noosphere-p2p implementation from feedback, introducing DHTNodeBuilder with non-libp2p interface.
  • Loading branch information
jsantell committed Oct 24, 2022
1 parent d8b6774 commit 09b4cda
Show file tree
Hide file tree
Showing 22 changed files with 3,145 additions and 107 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/run_test_suite.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: 'Install environment packages'
run: |
sudo apt-get update -qqy
sudo apt-get install jq
sudo apt-get install jq protobuf-compiler cmake
- name: 'Run Rust native target tests'
working-directory: ./rust
run: cargo test
Expand Down
11 changes: 10 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
{
"rust-analyzer.cargo.target": null,
"lldb.launch.cwd": "${workspaceFolder}"
"lldb.launch.cwd": "${workspaceFolder}",
"rust-analyzer.procMacro.enable": true,
"rust-analyzer.procMacro.ignored": {
"libp2p_swarm_derive": [
"NetworkBehaviour"
],
"async-trait": [
"async_trait"
]
}
}
Loading

0 comments on commit 09b4cda

Please sign in to comment.