1
0
mirror of https://github.com/actix/examples synced 2024-11-24 06:43:00 +01:00
examples/async_db/Cargo.toml

23 lines
419 B
TOML
Raw Normal View History

2018-05-26 23:05:12 +02:00
[package]
name = "async_db"
version = "0.1.0"
authors = ["Darin Gordon <dkcdkg@gmail.com>"]
2019-03-06 20:51:05 +01:00
edition = "2018"
workspace = ".."
2018-05-26 23:05:12 +02:00
[dependencies]
2019-03-06 20:51:05 +01:00
actix-rt = "0.2"
2019-03-26 04:29:00 +01:00
actix-web = { git="https://github.com/actix/actix-web.git" }
2018-07-16 08:36:53 +02:00
2018-05-26 23:05:12 +02:00
dotenv = "0.10"
env_logger = "0.5"
failure = "0.1.1"
futures = "0.1"
2019-03-06 07:16:42 +01:00
num_cpus = "1.10.0"
2018-05-26 23:05:12 +02:00
r2d2 = "0.8.2"
2019-03-27 07:33:13 +01:00
r2d2_sqlite = "0.8.0"
rusqlite = "0.16"
2018-05-26 23:05:12 +02:00
serde = "1.0"
serde_json = "1.0"
serde_derive = "1.0"