-
Notifications
You must be signed in to change notification settings - Fork 20
/
Cargo.toml
62 lines (53 loc) · 1.69 KB
/
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
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
[package]
name = "native_db"
version = "0.8.1"
authors = ["Vincent Herlemont <[email protected]>"]
edition = "2021"
description = "Drop-in embedded database"
license = "MIT"
repository = "https://github.com/vincent-herlemont/native_db"
readme = "README.md"
keywords = ["embedded-database", "database", "multi-platform", "android", "ios"]
categories = ["database-implementations", "concurrency", "data-structures", "caching", "algorithms"]
[workspace]
members = ["native_db_macro"]
[dependencies]
redb = "2.2.0"
redb1 = { version = "=1.5.1", package = "redb", optional = true }
native_db_macro = { version = "0.8.1", path = "native_db_macro" }
thiserror = "2.0.0"
serde = { version = "1.0" }
native_model = { version = "0.6.1" }
semver = "1"
# Optional tokio support
tokio = { version = "1.41.0", features = ["sync"], optional = true }
# TODO: channels with futures
# TODO: channels crossbeam
[dev-dependencies]
assert_fs = "1.1.2"
serial_test = { version = "3.2.0", features = ["file_locks"] }
shortcut_assert_fs = { version = "0.1.0" }
tokio = { version = "1.41.0", features = ["test-util","macros"] }
bincode = { version = "2.0.0-rc.3", features = ["serde"] }
criterion = { version = "0.5.1" }
doc-comment = "0.3.3"
uuid = { version = "1.11.0", features = ["serde", "v4"] }
chrono = { version = "0.4", features = ["serde"] }
rand = "0.8.5"
once_cell = "1.20.2"
dinghy-test = "0.7.3"
itertools = "0.13"
include_dir = "0.7"
paste = "1.0.15"
cc = "1.2.1"
rusqlite = { version = "0.32.1", features = ["bundled"] }
concat-idents = "1.1.5"
[features]
default = [ "upgrade_0_5_x", "upgrade_0_7_x" ]
upgrade_0_5_x = [ "redb1" ]
upgrade_0_7_x = [ ]
[[bench]]
name = "all"
harness = false
[build-dependencies]
skeptic = "0.13.7"