-
Notifications
You must be signed in to change notification settings - Fork 10
/
Cargo.toml
45 lines (41 loc) · 1.15 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[package]
name = "validator"
version = "0.3.0"
authors = [
"Tristram Gräbener <[email protected]>",
"Francis Chabouis <[email protected]>",
]
edition = "2021"
[profile.release]
lto = true # Enable Link Time Optimization
codegen-units = 1 # Reduce number of codegen units to increase optimizations.
panic = 'abort' # Abort on panic
[features]
default = ["daemon"]
daemon = ["actix-web", "actix-rt", "futures", "read-url", "env_logger"]
read-url = ["gtfs-structures/read-url"]
[dependencies]
chrono = { version = "0.4", features = ["serde"] }
chrono-tz = "0.10"
env_logger = { version = "0.11", optional = true }
anyhow = "1"
futures = { version = "0.3", optional = true }
geo = "0.28"
gtfs-structures = { version = "0.41", default-features = false }
iso4217 = "0.3"
isolang = "2.1"
itertools = "0.13"
log = "0.4"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9"
clap = { version = "4.5", features = ["derive"] }
url = "2.5"
actix-web = { version = "4.9", optional = true }
actix-rt = { version = "2.10", optional = true }
geojson = "0.24"
rgb = "0.8"
[dev-dependencies]
tempfile = "3.13"
walkdir = "2.4"
zip = "2.2"