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

13 lines
257 B
TOML
Raw Permalink 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
2024-07-07 03:01:13 +02:00
redis = { version = "0.25", features = ["tokio-comp", "connection-manager"] }
2023-01-02 21:35:11 +01:00
serde.workspace = true