-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
46 lines (39 loc) · 822 Bytes
/
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
[package]
name = "weath3rb0i"
version = "0.1.0"
edition = "2021"
authors = ["Dimitar Rusev <[email protected]>"]
description = "CM text compressor"
repository = "https://github.com/mitiko/weath3rb0i/"
license = "GPL-3.0"
keywords = ["compressor", "context_mixing"]
categories = ["compression"]
default-run = "weath3rb0i"
[dependencies]
rayon = "1.9.0" # MT only used for search, compression is single threaded
[profile.dev]
opt-level = 1
[profile.release]
strip = true
lto = "fat"
codegen-units = 1
panic = "abort"
[profile.profiling]
inherits = "release"
debug = true
strip = "none"
[features]
default = []
unsafe_conversions = []
[[bin]]
name = "order0"
[[bin]]
name = "ac-over-huffman"
[[bin]]
name = "cmp"
[[bin]]
name = "ordern"
[[bin]]
name = "entropy-hashing-ac"
[[bin]]
name = "entropy-hashing-ac-cached"