-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
29 lines (28 loc) · 922 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[package]
name = "silex"
version = "0.24.0"
edition = "2021"
authors = ["Philippe Billerot"]
documentation = ""
homepage = ""
repository = "https://github.com/pbillerot/silex"
[dependencies]
actix-files = "0.6.2"
# actix-csrf = "0.7.0"
# actix-csrf = {path = "./actix_csrf"}
actix-session = { version = "0.7.2", features = ["cookie-session"] }
actix-web = { version = "4", default-features = false, features = ["cookies", "secure-cookies", "macros"] }
actix-web-lab = "0.19.1"
chrono = { version = "0.4", features = ["serde"] }
cookie = "0.17.0"
dotenv = "0.15.0"
env_logger = "0.7.1"
futures-util = "0.3.28"
log = "0.4.19"
markdown = "0.3.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.104"
serde_yaml = "0.9"
sqlx = { version = "0.7.1", features = ["runtime-async-std", "postgres", "sqlite", "uuid", "chrono", "bigdecimal"] }
tera = "1.19.0"
tokio = { version = "1.29.1", features = ["full"] }