Aravinth Manivannan
2e3d6999ff
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
minimal event types only version
20 lines
418 B
TOML
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 = []
|