-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
33 lines (27 loc) · 849 Bytes
/
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
[package]
name = "demoreel"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "demoreel"
crate-type = ["cdylib", "lib"]
[[bin]]
name = "demo-json"
path = "src/bin.rs"
[dependencies]
bitbuffer = "0.10.9"
error-chain = "0.12.4"
pyo3 = { version = "0.19"}
tf-demo-parser = { git = "https://github.com/demostf/parser.git", rev = "92d9be23" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_json_path = "0.6"
serde_arrow = { version = "0.7.1", features = ["arrow2-0-17"] }
pyo3-polars = "0.4.1"
polars = { version = "0.30.0", features = ["dtype-full"] }
arrow2 = "0.17.2"
itertools = "0.10.5"
clap = { version = "4.3.10", features = ["derive"] }
[dev-dependencies]
pyo3 = { version = "0.19", features = ["auto-initialize"] }