-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
53 lines (45 loc) · 985 Bytes
/
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
48
49
50
51
52
53
[package]
name = "lz-str"
version = "0.2.1"
authors = [ "adumbidiot <[email protected]>" ]
edition = "2018"
description = "A port of lz-string to Rust"
repository = "https://github.com/adumbidiot/lz-str-rs"
homepage = "https://github.com/adumbidiot/lz-str-rs"
license = "MIT OR Apache-2.0"
readme = "README.md"
keywords = [ "lz-string", "compression" ]
categories = [ "compression" ]
exclude = [
"scripts/*",
"js-test/*",
".github/*",
"Makefile",
"deny.toml",
"bindings",
"fuzz/*",
"test_data/*",
]
[dependencies]
rustc-hash = { version = "1.2.0", optional = true }
[dev-dependencies]
rand = "0.8.3"
criterion = "0.5.1"
[features]
# This is currently only used for benchmarking.
nightly = [ "criterion/real_blackbox" ]
[[bench]]
name = "compress"
harness = false
[[bench]]
name = "decompress"
harness = false
[workspace]
members = [
"bindings/*",
]
[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
strip = "symbols"