-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
42 lines (36 loc) · 866 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
30
31
32
33
34
35
36
37
38
39
40
41
42
[package]
name = "loki"
version = "0.1.0"
authors = ["Pascal Benchimol <[email protected]>"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
members = [
"server",
"launch",
"random",
"stop_areas",
]
[features]
default = [] #["vehicle_loads"]
vehicle_loads = []
[dependencies]
transit_model = "0.49"
typed_index_collection = { version = "2", features = ["expose-inner"] }
chrono = { version = "0.4", default-features = false, features = ["std", "clock"] }
chrono-tz = "0.6"
tracing = { version = "0.1", features = ["std", "release_max_level_info"] }
static_assertions = "1.1.0"
csv = "1"
serde = "1.0"
regex = "1"
lazy_static = "1"
[profile.dev]
opt-level = 1
codegen-units = 16
[profile.release]
opt-level = 3
debug = true
lto = true
codegen-units = 1
panic = 'unwind'