1
0
mirror of https://github.com/actix/examples synced 2025-02-08 20:06:07 +01:00
examples/basics/todo/Cargo.toml

22 lines
408 B
TOML
Raw Normal View History

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