-
Notifications
You must be signed in to change notification settings - Fork 20
/
Cargo.toml
66 lines (62 loc) · 1.61 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
[workspace]
members = ["crates/*"]
resolver = "2"
[workspace.package]
authors = [
"Martin Junghanns <[email protected]>",
"Paul Horn <[email protected]>",
]
rust-version = "1.65"
repository = "https://github.com/neo4j-labs/graph"
edition = "2021"
license = "MIT"
[workspace.dependencies]
ahash = "0.8.3"
arrow = "45.0.0"
arrow-flight = "45.0.0"
async-compression = { version = "0.3.15", features = ["tokio", "stream", "zstd"] }
async-trait = "0.1.72"
atoi = "2.0.0"
atomic = "0.5.3"
atomic_float = "0.1.0"
byte-slice-cast = "1.2.2"
clap = { version = "4.3", features = ["derive"] }
criterion = { version = "0.4.0", features = ["html_reports"] }
dashmap = "5.5.0"
delegate = "0.8.0"
directories = "4.0"
env_logger = "0.9.3"
fast-float = "0.2.0"
float-ord = "0.3.2"
futures = "0.3.28"
fxhash = "0.2.1"
gdl = "0.2.7"
itertools = "0.10.5"
linereader = "0.4.0"
log = "0.4.19"
memmap2 = "0.5.10"
nanorand = "0.7.0"
num = "0.4.1"
num_cpus = "1.16.0"
num-format = "0.4.4"
numpy = "0.17.2"
page_size = "0.4.2"
parking_lot = "0.12.1"
pico-args = "0.5.0"
polars = { version = "0.25.1", default_features = false, features = ["fmt"] }
pyo3 = "0.17.3"
pyo3-log = "0.7.0"
rand = "0.8.5"
rayon = "1.7.0"
reqwest = { version = "0.11", features = ["stream"] }
serde_json = "1.0.103"
serde = { version = "1.0.174", features = ["derive"] }
tap = "1.0.1"
tempfile = "3.7.0"
thiserror = "1.0.44"
tokio = { version = "1.29.1", features = ["full"], default-features = true }
tokio-tar = "0.3.1"
tokio-util = {version = "0.7.8", features = ["io"] }
tonic = "0.9"
[workspace.metadata.release]
pre-release-commit-message = "Release {{crate_name}} {{version}}"