-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (34 loc) · 1.06 KB
/
Cargo.toml
File metadata and controls
39 lines (34 loc) · 1.06 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
[package]
name = "libflate"
version = "2.2.1"
authors = ["Takeru Ohta <phjgt308@gmail.com>"]
description = "A Rust implementation of DEFLATE algorithm and related formats (ZLIB, GZIP)"
homepage = "https://github.com/sile/libflate"
repository = "https://github.com/sile/libflate"
readme = "README.md"
keywords = ["deflate", "gzip", "zlib"]
categories = ["compression", "no-std"]
license = "MIT"
edition = "2024"
include = [
"Cargo.toml",
"README.md",
"LICENSE",
"src/**/*.rs",
]
[dependencies]
adler32 = { version = "1", default-features = false }
crc32fast = { version = "1.1.1", default-features = false }
dary_heap = "0.3.5"
libflate_lz77 = { path = "libflate_lz77", version = "2.2.0", default-features = false }
core2 = { version = "0.4", default-features = false, features = ["alloc"] }
[features]
default = ["std"]
std = ["libflate_lz77/std", "core2/std"]
[dev-dependencies]
clap = { version = "4", features = ["derive"] }
[workspace]
members = ["libflate_lz77"]
exclude = ["flate_bench"]
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(fuzzing)'] }