[package]
edition = "2024"
name = "aetheris-protocol"
version = "0.2.4"
authors = ["garnizeH Labs"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "High-performance binary contracts and communication traits for the Aetheris Engine"
documentation = "https://docs.rs/aetheris-protocol"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/garnizeh-labs/aetheris-protocol"
resolver = "2"
[package.metadata.cargo-udeps.ignore]
development = []
build = [
"tonic-build",
"tonic-prost-build",
]
[features]
grpc = [
"dep:tonic",
"dep:tonic-prost",
"dep:prost",
]
test-utils = []
[lib]
name = "aetheris_protocol"
path = "src/lib.rs"
[dependencies.async-trait]
version = "0.1.89"
[dependencies.prost]
version = "0.14.1"
optional = true
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_bytes]
version = "0.11.19"
[dependencies.thiserror]
version = "2.0.18"
[dependencies.tonic]
version = "0.14.3"
features = ["codegen"]
optional = true
default-features = false
[dependencies.tonic-prost]
version = "0.14.3"
optional = true
[dependencies.tracing]
version = "0.1.44"
[dev-dependencies.tokio]
version = "1.51.1"
features = [
"full",
"rt",
"macros",
]
[build-dependencies.tonic-build]
version = "0.14.3"
[build-dependencies.tonic-prost-build]
version = "0.14.3"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.tonic]
version = "0.14.3"
features = [
"codegen",
"transport",
]
optional = true
default-features = false