-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
56 lines (46 loc) · 1.19 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[package]
authors = ["Ankur Srivastava <[email protected]>"]
categories = ["api-bindings", "asynchronous", "cloud", "infra"]
description = "This is a rust sdk to interact with aiven-cloud apis."
documentation = "https://docs.rs/aiven-rs"
edition = "2018"
homepage = "https://github.com/ansrivas/aiven-rs"
include = [
"**/*.rs",
"Cargo.toml",
]
keywords = ["sdk", "aiven", "cloud", "infra"]
license = "MIT"
name = "aiven_rs"
readme = "README.md"
repository = "https://github.com/ansrivas/aiven-rs"
version = "0.4.1"
[dependencies]
tracing = "0.1"
percent-encoding = "2.1.0"
serde = {version = "1.0", features = ["derive"]}
serde_derive = "1.0"
serde_json = "1.0"
bytes = "1.0"
thiserror = "1.0"
url = "2.1"
serde_bytes = "0.11"
mockito = {version = "0.31"}
once_cell = {version = "1.9"}
tracing-subscriber = {version = "0.3"}
[dependencies.reqwest]
default-features = false
features = ["json", "rustls-tls"]
version = "0.11.7"
[dev-dependencies]
anyhow = "1.0"
async-compat = "0.2.0"
smol = "1.2.5"
tokio = {version = "1", features = ["full"]}
[lib]
name = "aiven_rs"
path = "src/lib.rs"
# https://deterministic.space/high-performance-rust.html
[profile.release]
codegen-units = 1
lto = "fat"