[package] name = "nimrodshn-btree" version = "0.1.0" authors = ["Nimrod Shneor "] edition = "2018" description = "A persistent copy-on-write B+Tree implementation, designed as an index for a key-value store, inspired by SQLite." repository = "https://github.com/nimrodshn/btree" key_words = ["btree", "data-structures", "databases"] categories = ["data-structures"] readme = "README.md" license = "MIT" [lib] name = "btree" # The name of the target. path = "src/lib.rs" # The source file of the target. [dependencies] byteorder = "1.3.4" uuid = { version = "0.8", features = ["serde", "v4"] } memmap = "0.7.0"