forked from nickelc/modio-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
48 lines (43 loc) · 1.45 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
[package]
name = "modio"
version = "0.12.0" # don't forget to update html_root_url
description = "Rust interface for integrating https://mod.io - a modding API for game developers"
repository = "https://github.com/nickelc/modio-rs"
license = "MIT OR Apache-2.0"
authors = ["Constantin Nickel <[email protected]>"]
keywords = ["modio", "client"]
categories = ["api-bindings", "web-programming::http-client"]
edition = "2021"
rust-version = "1.71"
include = ["src/**/*", "LICENSE-*", "README.md", "CHANGELOG.md"]
[dependencies]
bitflags = "2.8.0"
bytes = "1.9.0"
futures-util = { version = "0.3.31", features = ["sink"] }
http = "1.2.0"
mime = "0.3.17"
pin-project-lite = "0.2.16"
reqwest = { version = "0.12.12", default-features = false, features = ["multipart", "stream"] }
serde = "1.0.217"
serde_derive = "1.0.217"
serde_json = "1.0.135"
tokio = { version = "1.43.0", default-features = false, features = ["fs"] }
tokio-util = { version = "0.7.13", features = ["codec", "io"] }
tracing = "0.1.40"
url = "2.5.4"
[dev-dependencies]
dotenv = "0.15.0"
httptest = "0.16.1"
md5 = "0.7.0"
serde_test = "1.0.177"
tokio = { version = "1.43.0", features = ["full"] }
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
[features]
default = ["default-tls"]
default-tls = ["reqwest/native-tls", "__tls"]
rustls-tls = ["reqwest/rustls-tls", "__tls"]
# Internal features
__tls = []
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]