-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (34 loc) · 876 Bytes
/
Cargo.toml
File metadata and controls
42 lines (34 loc) · 876 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
36
37
38
39
40
41
42
[package]
name = "scoreman"
version = "1.0.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
sm_trace = []
sm_debug = []
[dependencies]
anyhow = "1.0.83"
clap = { version = "4.5.4", features = ["derive"] }
entrace_core = { version = "0.1.0", features = [] }
itertools = "0.14.0"
itoa = "1.0.11"
memchr = "2.7.5"
midly = "0.5.3"
rustc-hash = "2.1.1"
tracing = {version = "0.1.41", features = ["max_level_off","release_max_level_off"]}
#tracing = {version = "0.1.41", features = []}
tracing-subscriber = "0.3.20"
yansi = "1.0.1"
[dev-dependencies]
insta = { version = "1.38.0", features = ["yaml"] }
[profile.dev.package]
insta.opt-level = 3
[profile.release]
opt-level = 3
lto = "thin"
[profile.releaseFat]
inherits = "release"
lto = "fat"
[profile.profiling]
inherits = "release"
debug = 1