-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
34 lines (30 loc) · 1.05 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
[package]
name = "amtrak-gtfs-rt"
version = "0.4.3"
license = "AGPL-3.0"
description = "Converts Amtrak Track-A-Train to valid GTFS-rt vehicle and trip information"
edition = "2021"
#Removing this repository link is prohibited in any fork.
repository = "https://github.com/catenarytransit/amtrak-gtfs-rt"
[lints.rust]
unused_must_use = "deny"
non_ascii_idents = "deny"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
amtk = "0.1.0"
base64 = "0.22"
chrono = "0.4"
chrono-tz = "0.10"
futures = "0.3.30"
geojson = "0.24"
gtfs-realtime = "0.1.3"
gtfs-rt = "0.5"
gtfs-structures = "0.42.0"
openssl = "0.10"
prost = "0.13"
reqwest = {version = "0.12", features = ["gzip","brotli","rustls-tls","deflate","cookies"]}
rust-crypto = "0.2"
serde = "1.0"
serde_json = "1.0 "
[dev-dependencies]
tokio = { version = "1.41", features = ["full"] }