[package]
edition = "2021"
name = "proofgate"
version = "0.1.0"
authors = ["0xCR6 <cristian@proofgate.xyz>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Official ProofGate SDK — blockchain transaction validation and guardrails for AI agents"
homepage = "https://www.proofgate.xyz"
documentation = "https://docs.rs/proofgate"
readme = "README.md"
keywords = [
"proofgate",
"blockchain",
"ai-agent",
"security",
"web3",
]
categories = [
"api-bindings",
"cryptography",
"web-programming",
]
license = "MIT"
repository = "https://github.com/ProofGate/proofgate-rs"
[features]
default = []
[lib]
name = "proofgate"
path = "src/lib.rs"
[[example]]
name = "basic"
path = "examples/basic.rs"
[dependencies.reqwest]
version = "0.12"
features = [
"json",
"rustls-tls",
]
default-features = false
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
version = "1.0"
features = [
"rt-multi-thread",
"macros",
]
[dev-dependencies.tokio-test]
version = "0.4"
[dev-dependencies.wiremock]
version = "0.6"