-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (36 loc) · 775 Bytes
/
Cargo.toml
File metadata and controls
42 lines (36 loc) · 775 Bytes
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
[package]
name = "runtime"
version = "0.1.0"
edition = "2021"
autoexamples = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
concurrent-queue = "1.2.2"
csv = "1.1"
env_logger = "0.9.0"
fixed-vec-deque = "0.1.9"
generator = "0.6"
getset = "0.1.2"
itertools = "0.10"
log = "0.4.14"
nanoid = "0.4.0"
quick-error = "2.0.1"
rand = "0.8.5"
rayon = "1.5.2"
rustc-hash = "1.1.0"
simple-error = "0.2.3"
structopt = "0.3.26"
uuid = { version = "0.8", features = ["v4"] }
jemallocator = "0.3.2"
[dependencies.polars]
path = "../polars/polars/"
[dev-dependencies]
ctor = "0.1.21"
env_logger = "0.9.0"
criterion = "0.3.5"
[[bench]]
name = "arithmetic"
harness = false
[[bench]]
name = "csvreader"
harness = false