-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (30 loc) · 1.06 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 = "mbta-rs"
version = "0.4.0"
edition = "2021"
authors = ["Robert Yin <bobertoyin@gmail.com>"]
description = "Simple Rust client for interacting with the MBTA V3 API."
readme = "README.md"
license = "MIT"
repository = "https://github.com/bobertoyin/mbta-rs"
documentation = "https://docs.rs/mbta-rs"
keywords = ["mbta", "public-transit", "massachusetts"]
categories = ["api-bindings", "web-programming::http-client"]
[package.metadata.docs.rs]
all-features = true
[dev-dependencies]
raster = "0.2.0"
rstest = "0.12.0"
[dependencies]
colors-transform = { version = "0.2.11", optional = true }
chrono = "0.4.19"
geo-types = { version = "0.7.4", optional = true }
polyline = { version = "0.9.0", optional = true }
serde = { version = "1.0.136", features = ["derive"] }
serde_json = "1.0.79"
staticmap = { version = "0.4.0", optional = true }
thiserror = "1.0.31"
tiny-skia = { version = "0.6.3", optional = true }
ureq = { version = "2.4.0", features = ["json"] }
[features]
map = ["dep:staticmap", "dep:polyline", "dep:geo-types", "dep:tiny-skia", "dep:colors-transform"]