-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
64 lines (62 loc) · 1.88 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
63
64
[workspace]
resolver = "2"
members = [
"tiledb/api",
"tiledb/common",
"tiledb/pod",
"tiledb/proc-macro",
"tiledb/queries",
"tiledb/sys",
"tiledb/sys-cfg",
"tiledb/sys-defs",
"tiledb/utils",
"test-utils/cells",
"test-utils/proptest-config",
"test-utils/signal",
"test-utils/strategy-ext",
"test-utils/uri",
"tools/api-coverage"
]
default-members = [
"tiledb/api",
"tiledb/common",
"tiledb/pod",
"tiledb/proc-macro",
"tiledb/queries",
"tiledb/utils",
]
[workspace.package]
edition = "2021"
rust-version = "1.80"
version = "0.1.0"
[workspace.dependencies]
anyhow = "1.0"
armerge = "2"
arrow = { version = "52.0.0", features = ["prettyprint"] }
arrow-schema = { version = "52.0.0" }
bindgen = "0.70"
cells = { path = "test-utils/cells", version = "0.1.0" }
cmake = "0.1"
itertools = "0"
num-traits = "0.2"
paste = "1.0"
proptest = { version = "1.0.0" }
regex = "1"
serde = { version = "1", features = ["derive"] }
serde_json = { version = "1", features = ["float_roundtrip"] }
signal = { path = "test-utils/signal", version = "0.1.0" }
strategy-ext = { path = "test-utils/strategy-ext", version = "0.1.0" }
tempfile = { version = "3" }
thiserror = { version = "1" }
tiledb-api = { path = "tiledb/api", version = "0.1.0" }
tiledb-common = { path = "tiledb/common", version = "0.1.0" }
tiledb-pod = { path = "tiledb/pod", version = "0.1.0" }
tiledb-proc-macro = { path = "tiledb/proc-macro", version = "0.1.0" }
tiledb-proptest-config = { path = "test-utils/proptest-config", version = "0.1.0" }
tiledb-sys = { path = "tiledb/sys", version = "0.1.0" }
tiledb-sys-cfg = { path = "tiledb/sys-cfg", version = "0.1.0" }
tiledb-sys-defs = { path = "tiledb/sys-defs", version = "0.1.0" }
tiledb-test-utils = { path = "tiledb/test-utils", version = "0.1.0" }
tiledb-utils = { path = "tiledb/utils", version = "0.1.0" }
pkg-config = "0.3.30"
uri = { path = "test-utils/uri", version = "0.1.0" }