mirror of
https://github.com/hinto-janai/cuprate.git
synced 2024-11-16 15:58:14 +00:00
This commit is contained in:
parent
94b4b9c2ec
commit
0e687cc3ff
2 changed files with 3 additions and 2 deletions
|
@ -12,12 +12,12 @@ keywords = ["cuprate", "database"]
|
|||
default = ["heed"]
|
||||
# default = ["redb"]
|
||||
# default = ["redb-memory"]
|
||||
heed = ["dep:cuprate-helper"]
|
||||
heed = []
|
||||
redb = ["dep:redb"]
|
||||
redb-memory = ["redb"]
|
||||
|
||||
[dependencies]
|
||||
cuprate-helper = { workspace = true, features = ["cast"], optional = true }
|
||||
cuprate-helper = { workspace = true, features = ["cast"] }
|
||||
|
||||
bytemuck = { version = "1.18.0", features = ["must_cast", "derive", "min_const_generics", "extern_crate_alloc"] }
|
||||
bytes = { workspace = true }
|
||||
|
|
|
@ -71,5 +71,6 @@ cfg_if::cfg_if! {
|
|||
use redb as _;
|
||||
} else {
|
||||
use heed as _;
|
||||
use cuprate_helper as _;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue