conductor/env/libconductor/Cargo.toml
Aravinth Manivannan 2e3d6999ff
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
feat: feature gate libconductor::Conductor trait implementation to ship
minimal event types only version
2022-11-16 15:39:46 +05:30

20 lines
418 B
TOML

[package]
name = "libconductor"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde = { version = "1", features=["derive"]}
serde_json = { version ="1", features = ["raw_value"]}
async-trait = { version = "0.1.57", optional = true}
[features]
default = [
"min",
"full",
]
full = ["async-trait", "min"]
min = []