1
0
mirror of https://github.com/actix/examples synced 2024-11-27 16:02:57 +01:00
examples/database_interactions/basic/Cargo.toml

17 lines
307 B
TOML
Raw Normal View History

2018-05-26 23:05:12 +02:00
[package]
name = "async_db"
2019-12-07 18:59:24 +01:00
version = "2.0.0"
edition = "2021"
2018-05-26 23:05:12 +02:00
[dependencies]
2022-02-02 01:44:58 +01:00
actix-web = "4.0.0-rc.1"
env_logger = "0.9.0"
2020-04-04 19:26:11 +02:00
failure = "0.1.7"
2019-12-07 18:59:24 +01:00
futures = "0.3.1"
2020-09-12 17:49:45 +02:00
num_cpus = "1.13"
2018-05-26 23:05:12 +02:00
r2d2 = "0.8.2"
r2d2_sqlite = "0.18.0"
rusqlite = "0.25.4"
serde = { version = "1.0", features = ["derive"] }
2018-05-26 23:05:12 +02:00
serde_json = "1.0"