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

17 lines
357 B
TOML
Raw Normal View History

2018-08-11 12:58:29 +02:00
[package]
name = "actix_redis"
version = "0.1.0"
authors = ["dowwie <dkcdkg@gmail.com>"]
2019-03-29 21:43:03 +01:00
edition = "2018"
workspace = ".."
2018-08-11 12:58:29 +02:00
[dependencies]
2019-03-29 21:43:03 +01:00
actix = "0.8.0-alpha.2"
2019-04-08 08:39:45 +02:00
actix-web = "1.0.0-alpha.4"
2019-03-29 21:43:03 +01:00
actix-redis = { git="https://github.com/actix/actix-redis.git" }
2018-08-11 12:58:29 +02:00
futures = "0.1.23"
redis-async = "0.4.0"
serde = "1.0.71"
serde_derive = "1.0.71"
2019-03-29 21:43:03 +01:00
env_logger = "0.6"