-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
37 lines (33 loc) · 1 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
[package]
name = "betfair_data"
version = "0.3.4"
edition = "2021"
[lib]
name = "betfair_data"
crate-type = ["cdylib"]
[dependencies]
pyo3 = { version = "0.16.1", features = ["extension-module", "macros", "nightly", "abi3-py37"] }
pyo3-log = "0.6"
log = "0.4.14"
tar = "0.4.38"
self_cell = "0.10.2"
ouroboros = "0.15.0"
crossbeam-channel = "0.5.2"
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", features = ["raw_value"] }
strum = { version = "0.24", features = ["derive"] }
strum_macros = "0.24"
chrono = "0.4.19"
simdutf8 = { version = "0.1", features = ["std", "aarch64_neon"] }
rayon = "1.5"
flate2 = "1.0"
zip = { version = "0.6.0" }
staticvec = { version = "0.11.3", features = ["serde"] }
bzip2-rs = { git = "https://github.com/paolobarbolini/bzip2-rs", features = ["rayon", "nightly"]}
regex = "1"
[target.'cfg(not(target_os = "linux"))'.dependencies]
mimalloc = { version = "*", default-features = false }
[profile.release]
lto = true # "fat"
codegen-units = 1
panic = "abort"