forked from lightonai/fast-plaid
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (30 loc) · 735 Bytes
/
Cargo.toml
File metadata and controls
35 lines (30 loc) · 735 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
[package]
name = "fast_plaid_rust"
version = "1.2.5"
edition = "2021"
build = "build.rs"
[lib]
name = "fast_plaid_rust"
crate-type = ["cdylib"]
path = "rust/lib.rs"
[dependencies]
anyhow = "1.0.98"
tch = { version = "0.20.0" }
itertools = "0.14.0"
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.140"
libc = "0.2.172"
parking_lot = "0.12.3"
once_cell = "1.21.3"
indicatif = "0.18.2"
pyo3 = { version = "0.24.2", features = ["extension-module"] }
pyo3-tch = "0.20.0"
rand = "0.9.1"
regex = "1.11.1"
# Windows-specific dependencies
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3.9", features = ["libloaderapi", "errhandlingapi"] }
[profile.dev]
opt-level = 3
[profile.release]
opt-level = 3