-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
59 lines (49 loc) · 1.64 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
57
58
59
[package]
name = "vrc"
version = "0.5.1"
edition = "2021"
license = "MPL-2.0"
authors = ["ljoonal"]
description = "Unofficial rust types of VRChat's API"
repository = "https://github.com/onlivfe/vrc_rs"
documentation = "https://docs.rs/vrc"
keywords = ["vrc", "vrchat", "api", "socialvr"]
categories = ["api-bindings", "games"]
include = ["src", "Cargo.toml", "LICENSE", "README.md"]
[badges]
maintenance = { status = "experimental" }
[lib]
name = "vrc"
path = "src/lib.rs"
crate-type = ["lib", "dylib"]
[features]
default = []
api_client = ["racal/reqwest", "reqwest", "governor", "percent-encoding", "base64", "async-trait"]
[dependencies]
serde = { version = "1.0.217", features = ["derive"] }
serde_with = { version = "3.12.0", features = ["time_0_3"] }
time = { version = "0.3", default-features = false, features = ["macros", "serde-well-known"] }
serde_json = { version = "1.0.134" }
strum = { version = "0.26", features = ["derive"] }
# API client specifics
racal = "0.5.0"
# racal = { path = "../racal" }
governor = { version = "0.8.0", optional = true }
tokio = { version = "1", optional = true }
percent-encoding = { version = "2", optional = true }
base64 = { version = "0.22.1", optional = true }
async-trait = { version = "0.1", optional = true }
either = { version = "1", features = ["serde"] }
url = { version = "2", features = ["serde"] }
[dependencies.reqwest]
optional = true
version = "0.12.11"
default-features = false
features = ["json", "rustls-tls"]
[dev-dependencies]
tokio-test = "0.4"
tokio = { version = "1", features = ["rt", "macros"] }
once_cell = "1"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "nightly"]