-
Notifications
You must be signed in to change notification settings - Fork 52
/
Cargo.toml
40 lines (37 loc) · 1.01 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
[package]
name = "oci-spec"
version = "0.7.1"
edition = "2021"
authors = [
"Furisto",
"Sascha Grunert <[email protected]>",
"Toru Komatsu <[email protected]>",
]
description = "Open Container Initiative Specifictions in Rust"
documentation = "https://docs.rs/oci-spec"
readme = "README.md"
homepage = "https://github.com/youki-dev/oci-spec-rs"
repository = "https://github.com/youki-dev/oci-spec-rs"
license = "Apache-2.0"
keywords = ["oci", "spec", "container", "runtime", "image"]
categories = ["api-bindings"]
[features]
default = ["distribution", "image", "runtime"]
proptests = ["quickcheck"]
distribution = []
image = []
runtime = []
[dependencies]
serde = { version = "1.0.129", features = ["derive"] }
thiserror = "2.0.0"
serde_json = "1.0.66"
quickcheck = { version = "1.0.3", optional = true }
derive_builder = "0.20.0"
getset = "0.1.3"
strum = "0.26.2"
strum_macros = "0.26.2"
regex = "1"
[dev-dependencies]
tempfile = "3.2.0"
rstest = "0.23.0"
serde_json = { version = "1.0.66", features = ["preserve_order"] }