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
13 changes: 4 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "prollytree"
description = "A prolly (probabilistic) tree for efficient storage, retrieval, and modification of ordered data."
authors = ["Feng Zhang <[email protected]>"]
version = "0.1.0-beta.1"
version = "0.2.0-alpha.1"
edition = "2021"

license = "Apache-2.0"
Expand All @@ -17,22 +17,17 @@ base64 = { version = "0.22.0", optional = true }
sha2 = "0.10"
tracing = { version = "0.1.37", optional = true }
rand = "0.9.0"
lazy_static = "1.4.0"
serde = { version = "1.0", features = ["derive"] }
hex = "0.4.3"
bincode = "1.3.3"
thiserror = "2.0.3"
thiserror = "1.0"
twox-hash = "2.0"
serde_json = "1.0.117"
arrow = "54.2.1"
schemars = "0.8"
parquet = { version = "54.0.0", features = ["arrow"] }

[dev-dependencies]
assert_matches = "1.5.0"
criterion = "0.5.1"
insta = "1.31.0"
paste = "1.0.14"
proptest = "1.2.0"
bytes = "1.10.1"
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ The following features are for Prolly tree library for Version 0.1.0:

The following features are for Prolly tree library for Version 0.2.0:
- [X] Arrow block encoding and decoding
- [ ] Parquet/Avro block encoding and decoding
- [X] Parquet/Avro block encoding and decoding
- [ ] Advanced probabilistic tree balancing

## Contributing
Expand Down
Loading