[package]
edition = "2021"
name = "guarantee"
version = "0.1.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "TEE attestation SDK for Rust — cryptographic proof that your code runs in a Trusted Execution Environment"
homepage = "https://guarantee.run"
documentation = "https://docs.rs/guarantee"
readme = "README.md"
keywords = [
"tee",
"sgx",
"attestation",
"enclave",
"gramine",
]
categories = [
"cryptography",
"web-programming",
]
license = "MIT"
repository = "https://github.com/susruth/guarantee"
[lib]
name = "guarantee"
path = "src/lib.rs"
[[example]]
name = "btc-signer"
path = "examples/btc-signer.rs"
[[example]]
name = "hello-tee"
path = "examples/hello-tee.rs"
[[example]]
name = "oracle"
path = "examples/oracle.rs"
[[example]]
name = "postgres-encrypted"
path = "examples/postgres-encrypted.rs"
[[example]]
name = "redis-cache"
path = "examples/redis-cache.rs"
[[test]]
name = "attest_test"
path = "tests/attest_test.rs"
[[test]]
name = "encrypt_test"
path = "tests/encrypt_test.rs"
[[test]]
name = "state_test"
path = "tests/state_test.rs"
[dependencies.aes-gcm]
version = "0.10"
[dependencies.base64]
version = "0.22"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.ed25519-dalek]
version = "2"
features = ["rand_core"]
[dependencies.guarantee-macros]
version = "0.1.2"
[dependencies.hkdf]
version = "0.12"
[dependencies.hmac]
version = "0.12"
[dependencies.rand]
version = "0.8"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.thiserror]
version = "1"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tracing]
version = "0.1"
[dependencies.uuid]
version = "1"
features = [
"v4",
"serde",
]
[dev-dependencies.axum]
version = "0.7"
[dev-dependencies.reqwest]
version = "0.12"
features = ["json"]
[dev-dependencies.tempfile]
version = "3"