Move bforest into a separate crate

This commit is contained in:
Amanieu d'Antras
2018-07-10 23:24:33 +01:00
parent ad184ff9aa
commit ae3a3c368b
12 changed files with 63 additions and 5 deletions

21
lib/bforest/Cargo.toml Normal file
View File

@@ -0,0 +1,21 @@
[package]
authors = ["The Cranelift Project Developers"]
name = "cranelift-bforest"
version = "0.18.1"
description = "A forest of B+-trees"
license = "Apache-2.0"
documentation = "https://cranelift.readthedocs.io/"
repository = "https://github.com/CraneStation/cranelift"
readme = "README.md"
keywords = ["btree", "forest", "set", "map"]
[dependencies]
cranelift-entity = { path = "../entity", version = "0.18.1", default-features = false }
[features]
default = ["std"]
std = ["cranelift-entity/std"]
[badges]
maintenance = { status = "experimental" }
travis-ci = { repository = "CraneStation/cranelift" }