-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
41 lines (36 loc) · 982 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
[package]
name = "septa-api"
version = "0.4.0"
edition = "2021"
description = "SEPTA Async Rust API Client"
keywords = ["septa", "api", "public-transit", "regional-rail", "train"]
readme = "README.md"
repository = "https://github.com/StefanBossbaly/septa-api/"
authors = ["Stefan Bossbaly <sbossb@gmail.com>"]
license = "MIT"
include = [
"/src/**/*.rs",
"/examples/*.rs",
"/README.md",
"/LICENSE"
]
[dependencies]
chrono = "0.4.38"
reqwest = { version = "0.12.8", features = ["json"] }
serde_json = "1.0.128"
serde = { version = "1.0.210", features = ["derive"] }
strum = { version = "0.26", features = ["derive"] }
thiserror = "1.0.64"
[dev-dependencies]
mockito = "1.5.0"
tokio = { version = "1.40.0", features = ["macros", "rt-multi-thread"] }
gtfs-structures = "0.41.3"
geojson = "0.24.1"
once_cell = "1.20.2"
serde_path_to_error = "0.1.16"
[[example]]
name = "client_example"
crate-type = ["bin"]
[[example]]
name = "geojson_example"
crate-type = ["bin"]