mirror of https://git.42l.fr/neil/sncf.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
684 B
32 lines
684 B
[package] |
|
name = "sncf" |
|
version = "1.5.0" |
|
authors = ["Association 42l <contact@noreply.example.org>"] |
|
edition = "2018" |
|
|
|
[features] |
|
default = [ "diesel/postgres" ] |
|
postgres = [ "diesel/postgres" ] |
|
mysql = [ "diesel/mysql" ] |
|
sqlite = [ "diesel/sqlite" ] |
|
|
|
[dependencies] |
|
actix-rt = "2.2.0" |
|
actix-web = "3.3.2" |
|
actix-files = "0.5.0" |
|
actix-session = "0.4" |
|
diesel = { version = "1.4", features = ["r2d2", "chrono"] } |
|
diesel_migrations = "1.4" |
|
url = "2.2" |
|
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" |
|
base64 = "0.13" |
|
rand = "0.8" |
|
askama = "0.10" |
|
csrf = "0.4" |
|
percent-encoding = "2.1"
|
|
|