[package]
edition = "2024"
name = "tf-registry"
version = "0.1.1"
authors = ["iacabezasbaculima"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A high-performance, asynchronous implementation of the Terraform Provider Registry protocol, powered by Tokio and Axum."
homepage = "https://github.com/iacabezasbaculima/tf-registry"
documentation = "https://docs.rs/tf-registry"
readme = "README.md"
keywords = [
"terraform",
"terraform-registry",
"terraform-provider",
]
categories = ["web-programming"]
license = "MIT"
repository = "https://github.com/iacabezasbaculima/tf-registry.git"
[lib]
name = "tf_registry"
path = "src/lib.rs"
[[example]]
name = "registry"
path = "examples/registry.rs"
[[test]]
name = "e2e"
path = "tests/e2e.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies.axum]
version = "0.8.8"
[dependencies.base64]
version = "0.22.1"
[dependencies.futures-util]
version = "0.3.31"
[dependencies.http]
version = "1.4.0"
[dependencies.hyper-rustls]
version = "0.27.7"
features = ["aws-lc-rs"]
default-features = false
[dependencies.hyper-util]
version = "0.1.19"
[dependencies.jsonwebtoken]
version = "10.2.0"
[dependencies.octocrab]
version = "0.49.5"
features = [
"default-client",
"follow-redirect",
"futures-util",
"hyper-rustls",
"hyper-timeout",
"jwt-rust-crypto",
"retry",
"rustls",
"rustls-aws-lc-rs",
"timeout",
"tokio",
"tracing",
"stream",
]
default-features = false
[dependencies.regex]
version = "1.12.2"
[dependencies.secrecy]
version = "0.10.3"
[dependencies.serde]
version = "1.0.228"
[dependencies.serde_json]
version = "1.0.148"
[dependencies.thiserror]
version = "2.0.17"
[dependencies.tower]
version = "0.5.2"
[dependencies.tower-http]
version = "0.6.8"
features = ["follow-redirect"]
[dependencies.tracing]
version = "0.1.44"
[dependencies.url]
version = "2.5.7"
[dev-dependencies.base64]
version = "0.22.1"
[dev-dependencies.ngrok]
version = "0.18.0"
[dev-dependencies.tempfile]
version = "3.24.0"
[dev-dependencies.tokio]
version = "1"
features = ["full"]
[dev-dependencies.tracing-subscriber]
version = "0.3.22"
[dev-dependencies.which]
version = "8.0.0"
[dev-dependencies.wiremock]
version = "0.6.5"