-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
47 lines (39 loc) · 1.07 KB
/
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
47
[workspace]
members = [".", "arithmetic-coding-core", "fenwick-model"]
[workspace.package]
rust-version = "1.79.0"
edition = "2021"
license = "MIT"
keywords = ["compression", "encoding", "arithmetic-coding", "lossless"]
categories = ["compression", "encoding", "parsing"]
repository = "https://github.com/danieleades/arithmetic-coding"
[workspace.dependencies]
thiserror = "2.0.3"
[workspace.lints.clippy]
cargo = "deny"
all = "deny"
nursery = "warn"
pedantic = "warn"
[package]
name = "arithmetic-coding"
description = "fast and flexible arithmetic coding library"
version = "0.4.0"
edition.workspace = true
license.workspace = true
keywords.workspace = true
categories.workspace = true
repository.workspace = true
rust-version.workspace = true
[dependencies]
arithmetic-coding-core = { path = "./arithmetic-coding-core", version = "0.4.0" }
bitstream-io = "2.0.0"
thiserror = { workspace = true }
[dev-dependencies]
fenwick-model = { path = "./fenwick-model", version = "0.1.0" }
criterion = "0.5.1"
test-case = "3.0.0"
[[bench]]
name = "sherlock"
harness = false
[lints]
workspace = true