mirror of
https://github.com/actix/examples
synced 2024-11-23 22:41:07 +01:00
17 lines
326 B
TOML
17 lines
326 B
TOML
[package]
|
|
name = "async_db"
|
|
version = "1.0.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
actix-web = "4"
|
|
|
|
env_logger = "0.9"
|
|
futures-util = { version = "0.3", default-features = false, features = ["std"] }
|
|
log = "0.4"
|
|
r2d2 = "0.8"
|
|
r2d2_sqlite = "0.20"
|
|
rusqlite = "0.27"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|