-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (36 loc) · 1.35 KB
/
Cargo.toml
File metadata and controls
41 lines (36 loc) · 1.35 KB
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
[package]
name = "timeweb-rs"
version = "0.1.3"
edition = "2024"
rust-version = "1.95"
description = "Async Rust SDK for the Timeweb Cloud API"
license = "MIT"
repository = "https://github.com/RAprogramm/timeweb-rs"
homepage = "https://github.com/RAprogramm/timeweb-rs"
documentation = "https://docs.rs/timeweb-rs"
readme = "README.md"
keywords = ["timeweb", "cloud", "sdk", "api"]
categories = ["api-bindings", "asynchronous"]
exclude = ["/.github", "/openapi", "/openapitools.json", "/release-plz.toml"]
[dependencies]
serde = { version = "1", features = ["derive"] }
serde_with = { version = "3", default-features = false, features = ["base64", "std", "macros"] }
serde_json = "1"
serde_repr = "0.1"
url = "2"
uuid = { version = "1", features = ["serde", "v4"] }
chrono = { version = "0.4", features = ["serde"] }
tokio = { version = "1", features = ["fs"] }
tokio-util = { version = "0.7", features = ["codec"] }
reqwest = { version = "0.13", default-features = false, features = ["json", "multipart", "stream", "query", "form"] }
[features]
default = ["native-tls"]
native-tls = ["reqwest/native-tls"]
rustls = ["reqwest/rustls"]
[dev-dependencies]
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
[package.metadata.docs.rs]
all-features = true
[lints.clippy]
pedantic = { level = "warn", priority = -1 }
nursery = { level = "warn", priority = -1 }