1
0
Fork 0
mirror of https://git.42l.fr/neil/sncf.git synced 2024-04-30 21:22:44 +02:00
sncf/Cargo.toml

31 lines
637 B
TOML
Raw Normal View History

2020-08-19 01:21:42 +02:00
[package]
name = "sncf"
2020-11-04 20:02:21 +01:00
version = "1.2.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]
2020-11-01 18:28:03 +01:00
actix-rt = "1.1.1"
actix-web = "3.2.0"
actix-files = "0.4.0"
diesel = { version = "1.4", features = ["r2d2", "chrono"] }
2020-08-19 01:21:42 +02:00
diesel_migrations = "1.4"
2020-09-16 22:24:55 +02:00
url = "2.1"
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.3"
2020-11-01 18:28:03 +01:00
base64 = "0.13"
2020-08-19 01:21:42 +02:00
rand = "0.7"
askama = "0.10"
2020-11-04 20:02:21 +01:00
csrf = "0.4"