[package]
edition = "2024"
name = "om-crypto-types"
version = "0.2.0"
build = false
exclude = [
"target/*",
".git/*",
".github/*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Shared cryptographic primitives used in the OneMoney Protocol"
homepage = "https://1moneynetwork.com/"
documentation = "https://docs.rs/om-crypto-types"
readme = "README.md"
license = "GPL-3.0"
repository = "https://github.com/1money-co/l1client"
resolver = "2"
[features]
test-utils = []
[lib]
name = "om_crypto_types"
path = "src/lib.rs"
[dependencies.alloy-primitives]
version = "1.5"
features = ["serde"]
[dependencies.bcs]
version = "0.1.6"
[dependencies.blst]
version = "0.3.16"
[dependencies.hex]
version = "0.4"
features = ["serde"]
[dependencies.rand]
version = "0.8.5"
[dependencies.serde]
version = "1.0"
features = [
"derive",
"rc",
"derive",
]
[dependencies.thiserror]
version = "2.0.12"
[dependencies.zeroize]
version = "1.8.1"
features = [
"derive",
"derive",
]
[dev-dependencies.rand]
version = "0.8.5"
[lints.clippy]
arithmetic_side_effects = "allow"
expect_used = "deny"
panic = "deny"
unwrap_used = "deny"
[lints.rust]
unsafe_code = "forbid"