-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
72 lines (60 loc) · 2.51 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
65
66
67
68
69
70
71
72
[package]
name = "fdb-rl"
version = "0.1.0"
edition = "2018"
rust-version = "1.49"
authors = ["fdb-rs Developers"]
description = """
FoundationDB Record Layer for Tokio
"""
license = "MIT OR Apache-2.0"
repository = "https://github.com/fdb-rs/fdb-rl"
keywords = ["foundationdb", "tokio"]
categories = ["database"]
[features]
default = ["fdb/fdb-7_1"]
[dependencies]
bytes = "1"
fdb = { git = "https://github.com/rajivr/fdb-wip", branch = "main" }
fdb-rl-proto = { version = "0.1.0", path = "../fdb-rl-proto", default-features = false }
num-bigint = "0.4"
partiql-parser = { git = "https://github.com/rajivr/partiql-lang-rust.git", rev = "2c5d3e14f6" }
partiql-catalog = { git = "https://github.com/rajivr/partiql-lang-rust.git", rev = "2c5d3e14f6" }
partiql-source-map = { git = "https://github.com/rajivr/partiql-lang-rust.git", rev = "2c5d3e14f6" }
partiql-ast = { git = "https://github.com/rajivr/partiql-lang-rust.git", rev = "2c5d3e14f6" }
partiql-logical-planner = { git = "https://github.com/rajivr/partiql-lang-rust.git", rev = "2c5d3e14f6" }
partiql-logical = { git = "https://github.com/rajivr/partiql-lang-rust.git", rev = "2c5d3e14f6" }
partiql-value = { git = "https://github.com/rajivr/partiql-lang-rust.git", rev = "2c5d3e14f6" }
partiql-eval = { git = "https://github.com/rajivr/partiql-lang-rust.git", rev = "2c5d3e14f6" }
prost = "0.12"
prost-reflect = "0.12"
tokio-stream = "0.1"
uuid = { version = "0.8", features = ["v4"] }
[dev-dependencies]
libtest-mimic = "0.5"
tokio = { version = "1", features = ["full"] }
tokio-stream = "0.1"
[[example]]
name = "test-cursor-key_value_cursor-KeyValueCursorBuilder-build_range"
path = "examples/test/cursor/key_value_cursor/KeyValueCursorBuilder/build_range.rs"
[[example]]
name = "test-cursor-KeyValueCursor-into_btreemap"
path = "examples/test/cursor/KeyValueCursor/main.rs"
[[example]]
name = "test-cursor-KeyValueCursor-Cursor-KeyValue-next"
path = "examples/test/cursor/KeyValueCursor/Cursor-KeyValue/next.rs"
[[example]]
name = "test-cursor-KeyValueCursor-Cursor-KeyValue-collect_filter_map"
path = "examples/test/cursor/KeyValueCursor/Cursor-KeyValue/collect_filter_map.rs"
[[example]]
name = "test-raw_record-RawRecordCursor-Cursor-RawRecord-next"
path = "examples/test/raw_record/RawRecordCursor/Cursor-RawRecord/next.rs"
[[example]]
name = "test-split_helper-delete"
path = "examples/test/split_helper/delete.rs"
[[example]]
name = "test-split_helper-load"
path = "examples/test/split_helper/load.rs"
[[example]]
name = "test-split_helper-save"
path = "examples/test/split_helper/save.rs"