-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
22 lines (21 loc) · 909 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
[package]
name = "gtfs_manager"
version = "0.1.0"
edition = "2021"
rust-version = "1.60"
[dependencies]
clap = { version = "3.1", features = ["derive"] }
uuid = { version = "1.1", features = ["v4"] }
im = { version = "15.0", features = ["serde"] }
druid = { git = "https://github.com/linebender/druid", features = ["im", "image", "png"] }
# gtfs-structures = { version = "0.32.2" }
# gtfs-structures = { path = "../gtfs-structure", default-features = false }
# gtfs-structures = { path = "../gtfs-structure" }
# gtfs-structures = { git = "https://github.com/maxwell8888/gtfs-structure" }
gtfs-structures = { git = "https://github.com/maxwell8888/gtfs-structure", branch = "without_serde_changes" }
# chrono = "0.2.16"
serde = { version = "1.0", features = ["derive", "rc"] }
serde_json = "1.0"
chrono = { version = "0.4", features = ["serde"] }
bincode = "1.3"
rgb = { version = "0.8", features = ["serde"] }