forked from Majored/rs-bbb-api-wrapper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (22 loc) · 827 Bytes
/
Cargo.toml
File metadata and controls
26 lines (22 loc) · 827 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
[package]
name = "bbb_api_wrapper"
version = "1.0.2"
authors = ["Harry [hello@majored.pw]"]
edition = "2021"
repository = "https://github.com/Majored/rs-bbb-api-wrapper"
description = "A wrapper for BuiltByBit's Ultimate REST API."
readme = "README.md"
license = "MIT"
documentation = "https://docs.rs/bbb_api_wrapper/"
homepage = "https://github.com/Majored/rs-bbb-api-wrapper"
keywords = ["async", "tokio", "api-wrapper", "BuiltByBit"]
categories = ["asynchronous", "api-bindings", "web-programming"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
reqwest = { version = "0.11.11", features = ["json"] }
tokio = "1.20.0"
serde = { version = "1.0.140", features = ["derive"] }
serde_json = "1.0.82"
serde_qs = "0.10.1"
log = "0.4.17"
derive-getters = "0.2.0"