Skip to content

Commit

Permalink
Merge branch 'develop' into feat/7/remove-the-litep2p-patch-from-carg…
Browse files Browse the repository at this point in the history
…otoml
  • Loading branch information
cernicc authored Jun 18, 2024
2 parents 5a0b507 + 88c6662 commit fcdd6fc
Show file tree
Hide file tree
Showing 13 changed files with 2,318 additions and 577 deletions.
104 changes: 63 additions & 41 deletions Cargo.lock

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

7 changes: 6 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,13 @@ panic = 'abort' # Use abort on panic to reduce binary size
substrate-build-script-utils = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.13.0" }
substrate-wasm-builder = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-v1.13.0" }

async-channel = "2.3.1"
async-stream = "0.3.5"
base64 = "0.22.1"
bitflags = "2.5.0"
byteorder = "1.5.0"
bytes = "1.6.0"
chrono = "0.4.38"
ciborium = "0.2.2"
cid = { version = "0.11.1" }
clap = { version = "4.5.3" }
Expand Down Expand Up @@ -65,7 +68,9 @@ thiserror = { version = "1.0.48" }
tokio = "1.37.0"
tokio-stream = "0.1.15"
tokio-util = "0.7.11"
tracing-subscriber = { version = "0.3.18" }
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
uuid = "1.8.0"

# Local
polka-storage-runtime = { path = "runtime" }
Expand Down
11 changes: 11 additions & 0 deletions storage/polka-index/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,24 @@ repository.workspace = true
version = "0.1.0"

[dependencies]
async-channel = { workspace = true }
base64 = { workspace = true }
chrono = { workspace = true, features = ["serde"] }
ciborium = { workspace = true }
cid = { workspace = true, features = ["serde"] }
clap = { workspace = true, features = ["derive", "string"] }
integer-encoding = { workspace = true }
jsonrpsee = { workspace = true, features = ["server"] }
rocksdb = { workspace = true }
serde = { workspace = true }
thiserror = { workspace = true }
tokio = { workspace = true, features = ["full"] }
tracing = { workspace = true }
tracing-subscriber = { workspace = true, features = ["env-filter"] }
uuid = { workspace = true, features = ["serde", "v4"] }

[dev-dependencies]
sha2 = { workspace = true }
tempfile = { workspace = true }

[lints]
Expand Down
2 changes: 2 additions & 0 deletions storage/polka-index/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Polka Index

2 changes: 1 addition & 1 deletion storage/polka-index/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1 +1 @@
pub mod piecestore;
pub mod local_index_directory;
Loading

0 comments on commit fcdd6fc

Please sign in to comment.