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

22 lines
408 B
TOML
Raw Normal View History

2018-08-27 11:56:26 +02:00
[package]
name = "todo"
2022-02-02 02:45:20 +01:00
version = "1.0.0"
2022-02-02 02:43:51 +01:00
edition = "2021"
2018-08-27 11:56:26 +02:00
[dependencies]
2022-02-18 03:40:58 +01:00
actix-web = "4.0.0-rc.3"
2022-02-05 18:34:43 +01:00
actix-files = "0.6.0-beta.16"
actix-session = "0.5.0-beta.7"
2020-09-12 17:49:45 +02:00
2020-04-07 18:18:52 +02:00
dotenv = "0.15"
env_logger = "0.9"
2022-02-06 08:55:51 +01:00
futures-util = "0.3.7"
log = "0.4"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tera = "1.5"
2022-02-05 18:34:43 +01:00
[dependencies.sqlx]
2022-02-06 08:55:51 +01:00
features = ["runtime-tokio-rustls", "sqlite", "offline"]
version = "0.5.10"