open_tavern/Cargo.toml

15 lines
396 B
TOML
Raw Normal View History

2024-09-22 20:46:51 +00:00
[package]
name = "open_tavern"
version = "0.1.0"
edition = "2021"
[dependencies]
2024-09-30 15:44:36 +00:00
axum = { version = "0.7.7", features = ["ws"] }
2024-09-22 20:46:51 +00:00
serde = "1.*.*"
serde_json = "1.*.*"
tokio = { version = "1.*.*", features = ["full"] }
2024-09-30 15:44:36 +00:00
sqlx = { version = "0.8.2", features = ["runtime-tokio", "sqlite"] }
2024-09-22 20:46:51 +00:00
tavern_macros = { version = "0.1.0", path = "tavern_macros" }
2024-09-30 15:44:36 +00:00
parking_lot = "0.12.3"
futures-util = "0.3.30"