-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCargo.toml
26 lines (24 loc) · 836 Bytes
/
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
[package]
name = "shaco"
version = "0.6.0"
edition = "2021"
description = "A League of Legends wrapper for the LCU REST & WS + the ingame API"
license = "MIT"
documentation = "https://docs.rs/shaco"
readme = "README.md"
homepage = "https://github.com/Leastrio/Shaco"
repository = "https://github.com/Leastrio/Shaco"
[dependencies]
sysinfo = "0.29.11"
base64 = "0.21.0"
native-tls = "0.2.11"
futures-util = "0.3.25"
tokio = "1.24.2"
tokio-tungstenite = { version = "0.20.1", features = ["native-tls"] }
reqwest = { version = "0.11.14", features = ["json"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0.91", features = ["raw_value"] }
serde-single-key-map = "0.1.0"
derive_more = { version = "0.99.17", features = ["display"] }
[dev-dependencies]
tokio = { version = "1.17.0", features = ["full"] }