-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (30 loc) · 711 Bytes
/
Cargo.toml
File metadata and controls
40 lines (30 loc) · 711 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
#cargo-features = ["profile-rustflags"]
[package]
name = "utopia"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.release]
#debug = true
lto = true
opt-level = 3
#codegen-units = 1
#rustflags = ["-C", "target-cpu=native","-C" ,"force-frame-pointers"]
[lib]
crate-type = ["cdylib", "lib"]
bench = false
[[bin]]
name = "utopia"
path = "src/bin/cli.rs"
bench = false
[dependencies]
clap = { version = "4.4.10", features = ["derive"] }
itertools = "0.12.0"
walkdir = "2.4.0"
rand = "0.8.5"
prettytable = "^0.10.0"
priority-queue = "2.0.2"
ordered-float = "4.2.0"
flate2 = "1.0.28"
fnv = "1.0.7"
colored = "2.1.0"