-
Notifications
You must be signed in to change notification settings - Fork 19
/
Cargo.toml
68 lines (60 loc) · 1.34 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
67
68
[package]
name = "fw"
version = "0.2.0"
authors = ["Andraz Tori <[email protected]>"]
description = "Like Vowpal Wabbit, but meaner"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
csv = "1.2"
# we need new version to enable static builds
fasthash = "0.4"
serde = {version = "1.0.163" , features = ["derive"]}
serde_json = "1.0.96"
clap = "2.33.1"
byteorder = "1.4.3"
merand48 = "0.1.0"
daemonize = "0.5.0"
lz4 = "1.24.0"
nom = "7.1.3"
dyn-clone = "1.0.11"
rand = "0.8.5"
rand_distr = "0.4.3"
rand_xoshiro = "0.6.0"
flate2 = { version = "1.0.26", features = ["zlib-ng"], default-features = false }
shellwords = "1.1.0"
blas = "0.22.0"
intel-mkl-src = {version= "0.8.1", default-features = false, features=["mkl-static-lp64-seq"]}
log = "0.4.18"
env_logger = "0.10.0"
rustc-hash = "1.1.0"
half = "2.3.1"
zstd = "0.13.1"
[build-dependencies]
cbindgen = "0.23.0"
[lib]
name = "fw"
path="src/lib.rs"
crate_type = ["lib", "cdylib"]
doctest = false
[[bin]]
name="fw"
path="src/main.rs"
[dev-dependencies]
tempfile = "3.1.0"
mockstream = "0.0.3"
[profile.release]
debug = false
lto = false
panic = 'abort'
codegen-units=1
[profile.dev]
opt-level = 2
debug = true
debug-assertions = true
overflow-checks = true
lto = false
panic = 'unwind'
incremental = false
codegen-units = 16
rpath = false