-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
37 lines (32 loc) · 911 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
37
[package]
name = "vila"
version = "3.1.0"
authors = ["Sebastian Rollen <[email protected]>"]
edition = "2018"
license = "MIT"
repository = "https://github.com/SebRollen/vila"
description = "Toolkit for creating strongly-typed REST API clients"
keywords = ["rest", "client", "api"]
categories = ["web-programming", "web-programming::http-client"]
[dependencies]
futures = "0.3"
indicatif = { version = "0.17.0-beta", optional = true }
log = "0.4.14"
reqwest = { version = "0.11", features = ["json"] }
serde = "1.0"
serde_json = "1.0"
thiserror = "1.0"
[[example]]
name = "pagination"
[[example]]
name = "progress"
required-features = ["progress"]
[dev-dependencies]
env_logger = "0.9.0"
serde = { version = "1.0", features = ["derive"] }
stream-flatten-iters = "0.2"
tokio = { version = "1.13", features = ["macros", "rt-multi-thread"] }
wiremock = "0.5"
[features]
default = []
progress = ["indicatif"]