-
-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathCargo.toml
More file actions
66 lines (62 loc) · 2.06 KB
/
Copy pathCargo.toml
File metadata and controls
66 lines (62 loc) · 2.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[package]
name = "bonsaidb-core"
version = "0.5.0"
authors = ["Jonathan Johnson <jon@khonsulabs.com>"]
edition = "2021"
description = "Core functionality and types for BonsaiDb."
repository = "https://github.com/khonsulabs/bonsaidb"
license = "MIT OR Apache-2.0"
keywords = ["document-database", "database"]
categories = ["database-implementations"]
readme = "./README.md"
homepage = "https://bonsaidb.io/"
rust-version = "1.70"
[features]
default = []
test-util = ["dep:tokio", "dep:anyhow", "dep:num_cpus"]
websockets = []
actionable-traits = []
instrument = ["pot/tracing"]
encryption = []
password-hashing = []
token-authentication = ["dep:blake3", "dep:rand"]
included-from-omnibus = ["bonsaidb-macros/omnibus-path"]
included-from-server = ["bonsaidb-macros/server-path"]
included-from-local = ["bonsaidb-macros/local-path"]
included-from-client = ["bonsaidb-macros/client-path"]
[dependencies]
bonsaidb-macros = { path = "../bonsaidb-macros", version = "=0.5.0" }
circulate = { version = "0.5.0" }
serde = { version = "1", features = ["derive"] }
pot = "3.0.0"
async-trait = "0.1"
uuid = { version = "1.3.0", features = ["v4", "serde"], optional = true }
thiserror = "1"
sha2 = "0.10"
futures = { version = "0.3" }
tokio = { version = "1.16.1", features = ["time"], optional = true }
num-traits = "0.2"
actionable = "0.2.0"
anyhow = { version = "1", optional = true }
itertools = "0.11"
ordered-varint = "2.0.0"
derive-where = "~1.2.0"
transmog = "0.1.0"
transmog-pot = "0.3.0"
arc-bytes = { version = "0.3.3", features = ["serde"] }
zeroize = { version = "1", features = ["zeroize_derive"] }
num_cpus = { version = "1.13.1", optional = true }
tinyvec = { version = "1.5.1", features = ["alloc"] }
blake3 = { version = "1.3.1", optional = true }
rand = { version = "0.8.5", optional = true }
bytecount = "0.6.3"
[dev-dependencies]
hex-literal = "0.4.1"
tokio = { version = "1.16.1", features = ["full"] }
futures = { version = "0.3" }
num-derive = "0.4.0"
anyhow = "1"
transmog-bincode = "0.1"
num_cpus = "1"
[package.metadata.docs.rs]
features = ["websockets", "encryption", "password-hashing"]