1
0
mirror of https://github.com/actix/examples synced 2024-11-23 22:41:07 +01:00
examples/redis/Cargo.toml

16 lines
312 B
TOML
Raw Normal View History

2018-08-11 12:58:29 +02:00
[package]
name = "actix_redis"
2019-12-16 06:23:36 +01:00
version = "1.0.0"
2018-08-11 12:58:29 +02:00
authors = ["dowwie <dkcdkg@gmail.com>"]
2019-03-29 21:43:03 +01:00
edition = "2018"
2018-08-11 12:58:29 +02:00
[dependencies]
2019-12-20 17:30:26 +01:00
actix = "0.9.0"
2019-12-16 06:23:36 +01:00
actix-rt = "1.0.0"
2019-12-25 17:48:33 +01:00
actix-web = "2.0.0"
2019-12-20 17:30:26 +01:00
actix-redis = "0.8.0"
2019-12-16 06:23:36 +01:00
futures = "0.3.1"
redis-async = "0.6.1"
serde = { version = "1.0.71", features = ["derive"] }
2020-04-05 06:50:44 +02:00
env_logger = "0.7"