[package]
edition = "2021"
name = "sigsum"
version = "0.3.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
A Rust library for using Sigsum transparency logs.
"""
homepage = "https://github.com/mullvad/sigsum-rs"
documentation = "https://docs.rs/sigsum"
readme = "README.md"
license = "MIT"
repository = "https://github.com/mullvad/sigsum-rs"
[lib]
name = "sigsum"
path = "src/lib.rs"
[dependencies.base16ct]
version = "0.3.0"
[dependencies.base64ct]
version = "1.8.0"
features = ["alloc"]
[dependencies.ed25519-dalek]
version = "2.2.0"
[dependencies.sha2]
version = "0.10.8"
[dependencies.thiserror]
version = "2.0.17"
[dev-dependencies.hex-literal]
version = "1.0.0"
[dev-dependencies.insta]
version = "1.44.3"
[dev-dependencies.lazy_static]
version = "1.5.0"
[dev-dependencies.serde]
version = "1.0.190"
features = ["derive"]
[dev-dependencies.serde_json]
version = "1.0.107"
[lints.clippy]
allow_attributes = "warn"
as_ptr_cast_mut = "warn"
as_underscore = "warn"
borrow_as_ptr = "warn"
implicit_clone = "warn"
todo = "deny"
undocumented_unsafe_blocks = "warn"
unicode_not_nfc = "warn"
unused_async = "deny"
wildcard_dependencies = "deny"
[lints.rust]
absolute_paths_not_starting_with_crate = "deny"
explicit_outlives_requirements = "warn"
macro_use_extern_crate = "deny"
missing_abi = "deny"
non_ascii_idents = "forbid"
single_use_lifetimes = "warn"
unused_lifetimes = "warn"
unused_macro_rules = "warn"
[lints.rust.rust_2018_idioms]
level = "deny"
priority = -1