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

16 lines
290 B
TOML
Raw Normal View History

2018-08-11 12:58:29 +02:00
[package]
2022-10-16 20:14:40 +02:00
name = "db-redis"
2019-12-16 06:23:36 +01:00
version = "1.0.0"
2022-02-02 02:43:51 +01:00
edition = "2021"
2018-08-11 12:58:29 +02:00
[dependencies]
actix-web.workspace = true
2022-03-04 17:28:40 +01:00
env_logger.workspace = true
log.workspace = true
redis = { version = "0.24", default-features = false, features = [
"tokio-comp",
"connection-manager",
] }
2023-01-02 21:35:11 +01:00
serde.workspace = true