-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
34 lines (31 loc) · 995 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
[package]
name = "splits-io-api"
version = "0.4.0"
authors = ["Christopher Serr <[email protected]>"]
edition = "2021"
documentation = "https://docs.rs/splits-io-api/"
repository = "https://github.com/LiveSplit/splits-io-api"
license = "Apache-2.0/MIT"
description = "Bindings to the splits.io API for Rust."
readme = "README.md"
keywords = ["splits-io", "speedrun", "livesplit", "web", "async"]
categories = ["network-programming", "api-bindings"]
include = [
"/src/*",
"/Cargo.toml",
"/CHANGELOG.md",
"/LICENSE-APACHE",
"/LICENSE-MIT",
"/README.md"
]
[dependencies]
serde = "1.0.189"
serde_derive = "1.0.189"
uuid = { version = "1.6.1", default-features = false, features = ["serde"] }
reqwest = { version = "0.11.23", default-features = false, features = ["json", "multipart"] }
[features]
default = ["rustls"]
rustls = ["reqwest/rustls-tls-webpki-roots"]
[dev-dependencies]
tokio = { version = "1.0.1", features = ["io-std", "macros"] }
anyhow = "1.0.25"