[package]
edition = "2021"
name = "aex-core"
version = "2.0.0-beta.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core types, traits, and errors for Agent Exchange Protocol (AEX)."
readme = false
license = "Apache-2.0"
repository = "https://github.com/icaroholding/aex"
[lib]
name = "aex_core"
path = "src/lib.rs"
[[test]]
name = "proptests"
path = "tests/proptests.rs"
[[test]]
name = "proptests_v2"
path = "tests/proptests_v2.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.thiserror]
version = "2"
[dependencies.uuid]
version = "1"
features = [
"v4",
"serde",
]
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.serde_json]
version = "1"