-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
31 lines (29 loc) · 1.01 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
[package]
name = "eludrs"
version = "0.4.0-alpha1"
edition = "2021"
license = "MIT"
description = "A simple API wrapper for Eludris built on Tokio"
homepage = "https://github.com/eludris-community/eludrs"
repository = "https://github.com/eludris-community/eludrs"
readme = "README.md"
categories = [
"api-bindings",
"asynchronous",
"web-programming",
"web-programming::http-client",
"web-programming::websocket",
]
keywords = ["eludris"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.66"
futures = "0.3.25"
log = "0.4.17"
rand = "0.8.5"
reqwest = { version = "0.11.13", default-features = false, features = ["json", "rustls-tls"] }
serde = { version = "1.0.147", features = ["derive"] }
serde_json = "1.0.87"
todel = { version = "0.4.0-alpha1", git = "https://github.com/eludris/todel" }
tokio = { version = "1.21.2", features = ["rt-multi-thread", "macros", "time"] }
tokio-tungstenite = { version = "0.17.2", features = ["rustls-tls-webpki-roots"] }