bazzar/crates/plugin-api/Cargo.toml

20 lines
575 B
TOML
Raw Permalink Normal View History

2023-06-01 22:02:47 +02:00
[package]
name = "plugin-api"
version = "0.1.0"
edition = "2021"
[dependencies]
2024-06-24 14:54:46 +02:00
actix-web = { workspace = true }
async-trait = { workspace = true }
bincode = { workspace = true }
2023-06-03 13:31:57 +02:00
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 }
2024-06-24 14:54:46 +02:00
serde = { workspace = true }
thiserror = { workspace = true }
2023-06-01 22:02:47 +02:00
tracing = { version = "0" }