[package]
edition = "2021"
name = "ratify-protocol"
version = "1.0.0-alpha.10"
authors = ["Identities AI, Inc. <hello@identities.ai>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Cryptographic trust protocol for human-agent and agent-agent interactions — Rust reference SDK."
homepage = "https://identities.ai"
documentation = "https://docs.identities.ai"
readme = "README.md"
keywords = [
"ratify",
"delegation",
"identity",
"post-quantum",
"ed25519",
]
categories = [
"cryptography",
"authentication",
]
license = "Apache-2.0"
repository = "https://github.com/identities-ai/ratify-protocol"
[features]
default = ["std"]
std = ["serde_json"]
[lib]
name = "ratify_protocol"
path = "src/lib.rs"
[[test]]
name = "conformance"
path = "tests/conformance.rs"
[[test]]
name = "cross_sdk"
path = "tests/cross_sdk.rs"
[[test]]
name = "levers"
path = "tests/levers.rs"
[[test]]
name = "providers"
path = "tests/providers.rs"
[dependencies.base64]
version = "0.22"
[dependencies.chrono]
version = "0.4"
features = ["alloc"]
default-features = false
[dependencies.chrono-tz]
version = "0.9"
[dependencies.ed25519-dalek]
version = "2.1"
features = ["rand_core"]
[dependencies.fips204]
version = "0.4.6"
[dependencies.hex]
version = "0.4"
[dependencies.hmac]
version = "0.12"
[dependencies.rand_core]
version = "0.6"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
optional = true
[dependencies.sha2]
version = "0.10"
[dev-dependencies.serde_json]
version = "1"