-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
executable file
·54 lines (43 loc) · 1.32 KB
/
Copy pathCargo.toml
File metadata and controls
executable file
·54 lines (43 loc) · 1.32 KB
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
[package]
name = "rrr"
version = "0.1.12"
edition = "2024"
license = "GPL-3.0-or-later"
[lib]
name = "rrr"
crate-type = ["cdylib", "rlib"]
[dependencies]
# [basic] Serialization
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
# [basic] CLI argument parsing
#clap = { version = "4", features = ["derive"] }
# [basic] Time handling
#chrono = { version = "0.4", features = ["serde"] }
#proc-maps = "0.4"
# [method] The way to with memory
nix = { version = "0.31.3", features = ["process", "signal"] }
libc = "0.2"
# [paper] Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# [paper]
csv = "1.3"
# [method]
#burn = { version = "0.20.1", default-features = false, features = ["std", "vulkan", "autodiff", "ndarray", "store"] }
#burn-ndarray = { version = "0.20.1", default-features = false, features = ["std", "multi-threads"] }
evdev = "0.13.2"
# [optimize]
#tokio = { version = "1.50.0", features = ["rt-multi-thread", "macros", "time", "signal", "process"] }
thiserror = "2.0.19"
rand = "0.10.2"
pyo3 = { version = "0.29.0", features = ["extension-module"] }
#burn-wgpu = { version = "0.20.1", default-features = false, features = ["std", "vulkan"] }
[profile.release]
# [optimize]
opt-level = 3
lto = "fat"
codegen-units = 1
panic = "abort"
strip = true
debug = false