-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (23 loc) · 629 Bytes
/
Cargo.toml
File metadata and controls
26 lines (23 loc) · 629 Bytes
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
[package]
name = "challonge"
version = "0.5.4"
authors = ["Victor Polevoy <maintainer@vpolevoy.com>"]
edition = "2018"
description = "Client library for the Challonge REST API"
readme = "README.md"
license = "MIT"
keywords = ["game", "challonge", "tournament", "api", "system"]
repository = "https://github.com/iddm/challonge-rs"
documentation = "https://docs.rs/challonge/"
[dependencies]
base64 = "0.13"
serde_json = "1"
chrono = "0.4"
log = "0.4"
[dependencies.reqwest]
optional = true
version = "0.11"
features = ["blocking", "rustls-tls"]
[features]
default = ["reqwest/rustls-tls"]
default-tls = ["reqwest/default-tls"]