[package]
edition = "2021"
rust-version = "1.88"
name = "scrollcase-consumer"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Verify, prepare, and run caller-supplied local Scrollcase boxes."
homepage = "https://scrollcase.dev"
readme = "README.md"
keywords = [
"scrollcase",
"ed25519",
"reproducible",
"packaging",
"python",
]
categories = [
"development-tools",
"cryptography",
]
license = "Apache-2.0"
repository = "https://github.com/suffro/scrollcase"
[lib]
name = "scrollcase_consumer"
path = "src/lib.rs"
[[test]]
name = "archive"
path = "tests/archive.rs"
[[test]]
name = "conformance"
path = "tests/conformance.rs"
[[test]]
name = "contract"
path = "tests/contract.rs"
[[test]]
name = "prepare"
path = "tests/prepare.rs"
[[test]]
name = "release_document"
path = "tests/release_document.rs"
[[test]]
name = "run"
path = "tests/run.rs"
[[test]]
name = "schema"
path = "tests/schema.rs"
[dependencies.base64]
version = "0.23"
[dependencies.ed25519-dalek]
version = "3.0.0"
features = [
"pkcs8",
"pem",
]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.11"
[dependencies.zip]
version = "8.6.0"
features = ["deflate-flate2-zlib-rs"]
default-features = false
[dev-dependencies.base64]
version = "0.23"
[dev-dependencies.ed25519-dalek]
version = "3.0.0"
features = [
"pkcs8",
"pem",
]
[dev-dependencies.jsonschema]
version = "0.49.4"
default-features = false
[dev-dependencies.serde]
version = "1"
features = ["derive"]
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.sha2]
version = "0.11"
[dev-dependencies.zip]
version = "8.6.0"
features = ["deflate-flate2-zlib-rs"]
default-features = false
[target."cfg(unix)".dependencies.rustix]
version = "1.1.4"
features = [
"process",
"std",
]
default-features = false
[lints.clippy]
module_name_repetitions = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"