[package]
edition = "2021"
name = "vr-jcs"
version = "0.2.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "RFC 8785 JSON Canonicalization Scheme (JCS) for deterministic serialization in Rust"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/VertRule/vr-jcs"
[lib]
name = "vr_jcs"
path = "src/lib.rs"
[[test]]
name = "conformance"
path = "tests/conformance.rs"
[[test]]
name = "differential"
path = "tests/differential.rs"
[[test]]
name = "public_surface"
path = "tests/public_surface.rs"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
features = [
"arbitrary_precision",
"preserve_order",
]
[dependencies.zmij]
version = "1"
[dev-dependencies.blake3]
version = "1"
[lints.clippy]
cast_precision_loss = "deny"
float_arithmetic = "deny"
lossy_float_literal = "deny"
module_name_repetitions = "allow"
suboptimal_flops = "deny"
too_many_lines = "allow"
[lints.clippy.expect_used]
level = "deny"
priority = 1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.clippy.unwrap_used]
level = "deny"
priority = 1
[lints.rust]
unsafe_code = "deny"
unused_extern_crates = "deny"