[package]
edition = "2021"
rust-version = "1.75"
name = "txgate-core"
version = "0.3.2"
authors = ["TxGate Contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core types, traits, and error definitions for TxGate"
readme = "README.md"
keywords = [
"txgate",
"core",
"types",
]
categories = ["cryptography"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/luisjpf/txgate"
[lib]
name = "txgate_core"
path = "src/lib.rs"
[dependencies.alloy-primitives]
version = "1.5"
features = ["serde"]
[dependencies.dirs]
version = "6.0"
[dependencies.hex]
version = "0.4"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "2.0"
[dependencies.toml]
version = "0.8"
[dev-dependencies.mockall]
version = "0.13"
[dev-dependencies.proptest]
version = "1.5"
[dev-dependencies.tempfile]
version = "3.14"
[lints.clippy]
expect_used = "warn"
indexing_slicing = "deny"
panic = "deny"
todo = "warn"
unwrap_used = "deny"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"