-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
16 lines (14 loc) · 865 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
[package]
name = "tinkering"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
hyper = { version = "^0.14", features = ["full"] } # A fast and correct HTTP implementation for Rust.
hyper-tls = "^0.5" # Provides an HTTPS connector for use with hyper.
tokio = { version = "^1.0", features = ["full"] } # A runtime for writing reliable asynchronous functions with Rust.
serde = { version = "^1.0" } # serialization/deserialization to and from JSON.
serde_derive = "^1.0" # A macro for deriving serde::Serialize and serde::Deserialize (logic for structs).
serde_json = "^1.0" # For converting to and from JSON.
spinners = "^2.0" # For displaying a spinner while waiting for a response from the API.
dotenv = "0.15.0" # For loading environment variables from a .env file.