forked from netvl/ejdb.rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (29 loc) · 873 Bytes
/
Cargo.toml
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
[package]
name = "ejdb"
version = "0.4.1"
authors = ["Vladimir Matveev <[email protected]>"]
description = "Bindings for EJDB, and embedded JSON database"
repository = "https://github.com/netvl/ejdb.rs"
documentation = "https://netvl.github.io/ejdb.rs/"
readme = "Readme.md"
keywords = ["ejdb", "database", "json", "bson", "ffi"]
license = "MIT"
[badges]
maintenance = { status = "looking-for-maintainer" }
[lib]
name = "ejdb"
[dependencies]
ejdb-sys = { path = "ejdb-sys", version = "0.3" }
bitflags = "1.3.1"
quick-error = "1.2"
libc = "0.2.99"
itertools = "0.10.1"
dep_bson_0_13 = { package = "bson", version = "0.13", optional = true }
dep_bson_1_2 = { package = "bson", version = "1.2", optional = true }
[dev-dependencies]
tempdir = "0.3.7"
byteorder = "1.4.3"
[features]
default = ['bson_1_2']
bson_0_13 = ['dep_bson_0_13']
bson_1_2 = ['dep_bson_1_2']