-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathCargo.toml
More file actions
25 lines (24 loc) · 793 Bytes
/
Cargo.toml
File metadata and controls
25 lines (24 loc) · 793 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
[package]
name = "mtgapi-client"
version = "0.2.0"
authors = ["Alexander Wendt <alexwgh1+mtgio@gmail.com>"]
homepage = "https://github.com/MagicTheGathering/mtg-sdk-rust"
repository = "https://github.com/MagicTheGathering/mtg-sdk-rust"
documentation = "https://docs.rs/mtgapi-client"
license = "MIT"
description = "API bindings for www.magicthegathering.io"
readme = "README.md"
keywords = ["mtg", "magic", "gathering", "magic-the-gathering", "api"]
categories = ["api-bindings"]
edition = "2018"
[dependencies]
reqwest = { version = "0.10.4", features = ["rustls-tls"]}
serde = "1.0"
serde_json = "1.0"
serde_derive = "1.0"
itertools = "0.9.0"
hyper-rustls = "0.20"
failure = "0.1"
failure_derive = "0.1"
chrono = { version = "0.4", features = ["serde"] }
log = "0.4"