vr-jcs 0.3.0

RFC 8785 JSON Canonicalization Scheme (JCS) for deterministic serialization in Rust
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "vr-jcs"
version = "0.3.0"
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 = "deprecated_typed_api"
path = "tests/deprecated_typed_api.rs"

[[test]]
name = "differential"
path = "tests/differential.rs"

[[test]]
name = "known_receipt_fixtures"
path = "tests/known_receipt_fixtures.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",
    "unbounded_depth",
]

[dependencies.zmij]
version = "1"

[dev-dependencies.blake3]
version = "1"

[lints.clippy]
indexing_slicing = "warn"
match_wild_err_arm = "warn"
module_name_repetitions = "allow"
redundant_clone = "warn"
semicolon_if_nothing_returned = "warn"
too_many_lines = "allow"

[lints.clippy.cast_precision_loss]
level = "deny"
priority = 1

[lints.clippy.dbg_macro]
level = "deny"
priority = 1

[lints.clippy.exit]
level = "deny"
priority = 1

[lints.clippy.expect_used]
level = "deny"
priority = 1

[lints.clippy.float_arithmetic]
level = "deny"
priority = 1

[lints.clippy.lossy_float_literal]
level = "deny"
priority = 1

[lints.clippy.manual_assert]
level = "deny"
priority = 1

[lints.clippy.mem_forget]
level = "deny"
priority = 1

[lints.clippy.panic]
level = "deny"
priority = 1

[lints.clippy.pedantic]
level = "warn"
priority = -1

[lints.clippy.print_stderr]
level = "deny"
priority = 1

[lints.clippy.print_stdout]
level = "deny"
priority = 1

[lints.clippy.suboptimal_flops]
level = "deny"
priority = 1

[lints.clippy.todo]
level = "deny"
priority = 1

[lints.clippy.unimplemented]
level = "deny"
priority = 1

[lints.clippy.unwrap_used]
level = "deny"
priority = 1

[lints.rust]
dead_code = "warn"
missing_docs = "warn"
unreachable_pub = "warn"
unsafe_code = "deny"
unused_extern_crates = "deny"

[lints.rust.rust_2018_idioms]
level = "deny"
priority = -1