[package]
edition = "2021"
rust-version = "1.74"
name = "aurelia"
version = "0.2.0"
authors = ["teeay"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Embeddable service mesh for Rust distributed applications."
homepage = "https://teeay.dev/aurelia"
documentation = "https://docs.rs/aurelia"
readme = "README.md"
keywords = [
"mesh",
"service-mesh",
"peering",
"mtls",
"distributed",
]
categories = [
"network-programming",
"asynchronous",
]
license = "Apache-2.0"
repository = "https://github.com/teeay/aurelia"
[features]
actix = ["dep:actix"]
[lib]
name = "aurelia"
path = "src/lib.rs"
[dependencies.actix]
version = "0.13"
optional = true
[dependencies.asn1-rs]
version = "0.6"
[dependencies.async-trait]
version = "0.1"
[dependencies.bitflags]
version = "2"
[dependencies.bytes]
version = "1"
[dependencies.caducus]
version = "0.2.2"
[dependencies.futures]
version = "0.3"
[dependencies.libc]
version = "0.2"
[dependencies.ring]
version = "0.17"
[dependencies.rustls-pki-types]
version = "1"
[dependencies.tokio]
version = "1"
features = [
"io-util",
"rt-multi-thread",
"sync",
"fs",
"macros",
"net",
"time",
]
[dependencies.tokio-rustls]
version = "0.26"
features = [
"logging",
"tls12",
"ring",
]
default-features = false
[dependencies.tracing]
version = "0.1"
[dependencies.x509-parser]
version = "0.16"
[dependencies.zeroize]
version = "1"
[dev-dependencies.actix]
version = "0.13"
[dev-dependencies.rcgen]
version = "0.12"
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt",
"sync",
"time",
"test-util",
]