bazzar/crates/plugin-api/Cargo.toml

20 lines
579 B
TOML
Raw Normal View History

2023-06-01 22:02:47 +02:00
[package]
name = "plugin-api"
version = "0.1.0"
edition = "2021"
[dependencies]
2023-06-03 13:31:57 +02:00
actix-web = { version = "4.3.1" }
async-trait = { version = "0.1.68" }
bincode = { version = "1.3.3" }
cache-adapter = { workspace = true }
2023-06-01 22:02:47 +02:00
config = { path = "../config", default-features = false, features = [] }
2023-06-03 13:31:57 +02:00
derive_more = { version = "0.99.17" }
event-bus-adapter = { workspace = true }
file-storage-adapter = { workspace = true }
futures = { version = "0.3.28" }
payment-adapter = { workspace = true }
serde = { version = "1.0.163" }
2023-06-01 22:02:47 +02:00
thiserror = { version = "1" }
tracing = { version = "0" }