-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (26 loc) · 769 Bytes
/
Copy pathCargo.toml
File metadata and controls
32 lines (26 loc) · 769 Bytes
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
[package]
name = "rustycord"
version = "0.1.0"
authors = ["SyedAhkam <smahkam57@gmail.com>"]
edition = "2018"
repository = "https://github.com/SyedAhkam/rustycord"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = { version="1.6.1", features=[
"rt",
"rt-multi-thread",
"macros"
]}
tokio-tungstenite = { version="0.14.0", features=["rustls-tls"], git="https://github.com/snapview/tokio-tungstenite" }
reqwest = { version="0.11.3" }
serde = { version="1.0.126", features=["derive"] }
serde_json = "1.0"
serde-aux = "2.2.0"
serde_repr = "0.1"
snafu = "0.6.10"
log = "0.4"
rustc_version_runtime = "0.2.0"
futures-util = "0.3.15"
[dev-dependencies]
env_logger = "0.8.3"