-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCargo.toml
53 lines (45 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
48
49
50
51
52
53
[package]
name = "pica-record"
version = "0.1.0"
authors = ["Nico Wagner <[email protected]>"]
license = "EUPL-1.2"
keywords = ["PICA+", "code4lib"]
rust-version = "1.83"
edition = "2021"
[workspace]
default-members = ["crates/pica-cli"]
members = ["crates/pica-cli"]
resolver = "2"
[features]
serde = ["dep:serde", "bstr/serde"]
unstable = []
compat = []
[dependencies]
bstr = { version = "1.11" }
flate2 = { version = "1.0" }
regex = { version = "1.11" }
serde = { version = "1.0", optional = true, features = ["derive"] }
sha2 = { version = "0.10" }
smallvec = { version = "1.13" }
strsim = { version = "0.11" }
thiserror = { version = "2.0" }
winnow = { version = "0.6" }
[dev-dependencies]
anyhow = { version = "1.0" }
pica-record = { path = "./", features = ["serde"] }
quickcheck = { version = "1.0" }
quickcheck_macros = { version = "1.0" }
serde_test = { version = "1.0" }
tempfile = { version = "3.14" }
[lib]
path = "src/lib.rs"
[[test]]
path = "tests/lib.rs"
name = "integration"
[profile.release]
lto = "fat"
panic = "abort"
codegen-units = 1
strip = true
[profile.dev]
debug = 0