-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (32 loc) · 981 Bytes
/
Cargo.toml
File metadata and controls
37 lines (32 loc) · 981 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
[package]
name = "bidiff"
version = "2.0.0-dev"
description = "A (distantly) bsdiff-derived binary diff and patch library"
license = "Apache-2.0 OR MIT"
authors = ["Brendan Molloy <[email protected]>", "Amos Wenger <[email protected]>"]
edition = "2024"
repository = "https://github.com/divvun/bidiff"
[features]
default = ["diff", "patch"]
diff = ["rayon", "ringbuf", "memmap2", "tempfile"]
patch = ["integer-encoding", "zstd"]
instructions = []
profiling = []
[dependencies]
tracing = "0.1"
integer-encoding = { version = "4", default-features = false, optional = true }
zstd = { version = "0.13", optional = true }
rayon = { version = "1.11", optional = true }
ringbuf = { version = "0.4", optional = true }
memmap2 = { version = "0.9", optional = true }
tempfile = { version = "3", optional = true }
[dev-dependencies]
proptest = "1"
[workspace]
members = ["cli"]
[profile.release]
debug = true
lto = "fat"
codegen-units = 1
panic = "abort"
split-debuginfo = "packed"