-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (25 loc) · 755 Bytes
/
Cargo.toml
File metadata and controls
29 lines (25 loc) · 755 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
[package]
name = "generic_compression"
version = "0.2.0"
edition = "2024"
authors = ["TCA"]
description = "A library providing generic implementations of common compression algorithms."
license = "GPL-3.0-only"
readme = "README.md"
repository = "https://github.com/TCA166/compression"
categories = ["compression", "algorithms", "command-line-utilities"]
keywords = ["compression", "lzw", "huffman", "encoding", "decoding"]
[dependencies]
bits-io = "0.6.3"
clap = { version = "4.5.37", features = ["derive"] }
num = "0.4.3"
num-traits = "0.2.19"
serde = { version = "1.0.219", optional = true }
[features]
serde = ["dep:serde"]
[lib]
name = "generic_compression"
path = "src/lib/lib.rs"
[[bin]]
name = "generic_compression_cli"
path = "src/bin/bin.rs"