1
0
Fork 0
mirror of https://git.42l.fr/neil/sncf.git synced 2024-04-27 03:41:53 +02:00
sncf/Cargo.toml

33 lines
684 B
TOML
Raw Permalink Normal View History

2020-08-19 01:21:42 +02:00
[package]
name = "sncf"
version = "1.5.0"
2020-08-19 01:21:42 +02:00
authors = ["Association 42l <contact@noreply.example.org>"]
edition = "2018"
[features]
default = [ "diesel/postgres" ]
postgres = [ "diesel/postgres" ]
mysql = [ "diesel/mysql" ]
sqlite = [ "diesel/sqlite" ]
2020-08-19 01:21:42 +02:00
[dependencies]
actix-rt = "2.2.0"
2021-03-21 23:52:17 +01:00
actix-web = "3.3.2"
actix-files = "0.5.0"
actix-session = "0.4"
diesel = { version = "1.4", features = ["r2d2", "chrono"] }
2020-08-19 01:21:42 +02:00
diesel_migrations = "1.4"
2021-03-21 23:52:17 +01:00
url = "2.2"
2020-08-19 01:21:42 +02:00
toml = "0.5"
lazy_static = "1.4"
serde = "1.0"
serde_json = "1.0"
serde_derive = "1.0"
chrono = { version = "0.4", features = ["serde"] }
regex = "1.5"
2020-11-01 18:28:03 +01:00
base64 = "0.13"
2021-03-21 23:52:17 +01:00
rand = "0.8"
2020-08-19 01:21:42 +02:00
askama = "0.10"
2020-11-04 20:02:21 +01:00
csrf = "0.4"
percent-encoding = "2.1"