Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 25 additions & 8 deletions Cargo.lock

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

8 changes: 7 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ name = "encrypted_upload_test"
path = "examples/encrypted_upload_test.rs"

[workspace.package]
version = "0.3.7"
version = "0.4.0"
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/functionland/fula-api"
Expand Down Expand Up @@ -169,6 +169,12 @@ lru = "0.12"
semver = "1.0"
bitvec = "1.0"

# Embedded persistent KV (block cache, Phase 2.2 of master-independent reads).
# Pinned to 2.6.x to avoid silent file-format drift in routine cargo update.
# A 2.x bump is a deliberate decision (verify file-format compatibility before
# upgrading; cache files in production may need migration handling).
redb = "~2.6"

# Testing
criterion = "0.5"
proptest = "1.5"
Expand Down
3 changes: 3 additions & 0 deletions crates/fula-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -82,3 +82,6 @@ tempfile = { workspace = true }
rstest = { workspace = true }
tokio-test = "0.4"
reqwest = { workspace = true }
# Used by users_index_publisher A3 tests to mock kubo's
# /api/v0/name/publish HTTP endpoint without spinning up a real IPFS daemon.
wiremock = { workspace = true }
Loading
Loading