Initial commit

This commit is contained in:
Amelia 2023-10-31 16:51:43 +01:00
commit 5db7f7c0d9
Signed by: limefox
GPG key ID: F86ACA6D693E7BE9
4 changed files with 1143 additions and 0 deletions

12
Cargo.toml Normal file
View file

@ -0,0 +1,12 @@
[package]
name = "estrus"
version = "0.1.0"
edition = "2021"
authors = ["Lymkwi"]
license = "ACSL"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
reqwest = { version = "0.11.22", features = ["default-tls", "json", "gzip"] }
tokio = { version = "1.33.0", features = ["rt-multi-thread", "macros", "net"] }