-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
62 lines (53 loc) · 954 Bytes
/
Cargo.toml
File metadata and controls
62 lines (53 loc) · 954 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[package]
name = "libdeflate"
version = "26.2.0"
rust-version = "1.92.0"
edition = "2024"
authors = ["404"]
description = "Rust rewrite of libdeflate"
license = "BSD-3-Clause"
readme = "README.md"
keywords = [
"deflate",
"zlib",
"gzip",
"compression",
"decompression",
]
categories = ["compression"]
repository = "https://github.com/404Setup/libdeflate-rs"
exclude = [
".github/",
".jules/",
"bench_data/",
".idea/",
"bench_info.txt"
]
[dependencies]
rayon = "1.11.0"
[features]
default = []
[profile.release]
opt-level = 3
codegen-units = 1
lto = "fat"
[profile.dev]
opt-level = 3
codegen-units = 1
lto = "fat"
[lib]
crate-type = ["rlib", "cdylib"]
name = "libdeflate"
path = "src/lib.rs"
[[example]]
name = "examples"
path = "examples/gzip_zlib.rs"
[dev-dependencies]
criterion = "0.5"
libdeflater = "1.25.0"
[[bench]]
name = "bench_main"
harness = false
[[bench]]
name = "encoder_perf"
harness = false