-
Notifications
You must be signed in to change notification settings - Fork 45
/
Cargo.toml
30 lines (27 loc) · 912 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
[package]
name = "roux"
version = "2.2.13"
authors = ["Justin Duch <[email protected]>"]
edition = "2021"
license = "MIT"
description = "Simple and (a)synchronous Reddit API wrapper"
readme = "README.md"
documentation = "https://docs.rs/roux"
repository = "https://github.com/halcyonnouveau/roux"
keywords = ["reddit", "api", "async"]
categories = ["authentication", "api-bindings", "network-programming"]
exclude = [".github/*", ".gitignore"]
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
maybe-async = "0.2"
reqwest = { version = "0.11", default-features = false, features = ["json"] }
[dev-dependencies]
dotenv = "0.15"
tokio = { version = "1.8.4", features = ["rt-multi-thread", "macros"] }
tokio-test = "0.4"
[features]
default = ["native-tls"]
rustls = ["reqwest/rustls-tls"]
native-tls = ["reqwest/native-tls"]
blocking = ["maybe-async/is_sync", "reqwest/blocking"]