-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
73 lines (61 loc) · 1.84 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
60
61
62
63
64
65
66
67
68
69
70
71
72
[package]
name = "vtubestudio"
version = "0.9.1-alpha.0"
edition = "2018"
authors = ["Walfie <[email protected]"]
license = "MIT"
readme = "README.md"
keywords = ["vtubestudio"]
categories = ["api-bindings"]
homepage = "https://github.com/walfie/vtubestudio-rs"
repository = "https://github.com/walfie/vtubestudio-rs"
documentation = "https://docs.rs/vtubestudio"
description = "A library for interacting with the VTube Studio API."
[features]
default = ["tokio-tungstenite"]
[dependencies]
displaydoc = "0.2"
futures-core = "0.3"
futures-sink = "0.3"
futures-util = "0.3"
paste = "1"
pin-project-lite = "0.2"
serde = { version = "1", features = ["derive"] }
serde_json = { version = "1", features = ["raw_value"] }
smol_str = { version = "0.1", features = ["serde"] }
split-stream-by = "0.1"
thiserror = "1"
tokio = { version = "1", features = ["sync"] }
tokio-tower = "0.6"
tokio-tungstenite = { version = "0.23", optional = true }
tower = { version = "0.4.11", features = ["util", "retry", "reconnect", "buffer"] }
tracing = "0.1"
[dev-dependencies]
base64 = "0.22.1"
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
[package.metadata.docs.rs]
# Use `doc_cfg` feature on docs.rs
# https://stackoverflow.com/a/61417700
all-features = true # document all features
rustdoc-args = ["--cfg", "docsrs"] # defines the configuration attribute `docsrs`
[[example]]
name = "readme"
required-features = ["tokio-tungstenite"]
[[example]]
name = "statistics"
required-features = ["tokio-tungstenite"]
[[example]]
name = "spin"
required-features = ["tokio-tungstenite"]
[[example]]
name = "no_middleware"
required-features = ["tokio-tungstenite"]
[[example]]
name = "hotkey"
required-features = ["tokio-tungstenite"]
[[example]]
name = "events"
required-features = ["tokio-tungstenite"]
[[example]]
name = "pin_item"
required-features = ["tokio-tungstenite"]