1
0
mirror of https://github.com/actix/examples synced 2025-01-22 22:05:57 +01:00
examples/databases/redis/Cargo.toml

12 lines
260 B
TOML
Raw Normal View History

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