-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (29 loc) · 938 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
[package]
authors = ["Paul Maruhn <paulmaruhn@gmail.com>"]
categories = ["api-bindings"]
description = "Access the ProxerMe API with Rust"
documentation = "https://docs.rs/proxer"
homepage = "https://0x000.net/proxer-rs"
keywords = ["proxer", "api", "interwebs"]
license = "MIT"
name = "proxer"
readme = "README.md"
repository = "https://github.com/cuechan/proxer-rs"
version = "0.3.5"
[badges]
maintenance = { status = "actively-developed" }
travis-ci = { repository = "cuechan/proxer-rs", branch = "master" }
[dependencies]
chrono = "0.4.0"
futures = "0.1.14"
hyper = "0.11.8"
log = "0.3.8"
pretty_env_logger = "0.1.1"
reqwest = "0.8.1"
serde = "1.0.8"
serde_derive = "1.0.10"
serde_json = "1.0.2"
serde_urlencoded = "0.5.1"
void = "1.0.2"
[[example]]
name = "fetch_usercomments"