rfe-types 0.1.0

Shared types for the Rust Fintech Ecosystem (RFE): newtype IDs, hashing, Decimal utilities
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 = "rfe-types"
version = "0.1.0"
authors = ["NORM Authors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Shared types for the Rust Fintech Ecosystem (RFE): newtype IDs, hashing, Decimal utilities"
homepage = "https://github.com/norm-rs/norm-rs"
documentation = "https://docs.rs/rfe-types"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/norm-rs/norm-rs"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[features]
default = []
gost-export = ["streebog"]
std = [
    "serde/std",
    "rust_decimal/std",
    "uuid/std",
    "thiserror/std",
    "blake3/std",
]
v4 = ["uuid/v4"]

[lib]
name = "rfe_types"
path = "src/lib.rs"

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

[[bench]]
name = "hashing"
path = "benches/hashing.rs"
harness = false

[[bench]]
name = "streebog"
path = "benches/streebog.rs"
harness = false
required-features = ["gost-export"]

[dependencies.blake3]
version = "1"
default-features = false

[dependencies.rust_decimal]
version = "1"
features = [
    "serde-with-str",
    "maths",
]
default-features = false

[dependencies.serde]
version = "=1.0.219"
features = ["derive"]
default-features = false

[dependencies.serde_json]
version = "1.0"
features = [
    "alloc",
    "alloc",
]
default-features = false

[dependencies.streebog]
version = "0.10"
optional = true
default-features = false

[dependencies.thiserror]
version = "2"
default-features = false

[dependencies.uuid]
version = "1"
features = ["serde"]
default-features = false

[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]

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