Initial Commit

This commit is contained in:
kossLAN 2024-10-23 04:44:29 -04:00
parent 5b45525331
commit 7f8d940ef5
Signed by: kossLAN
SSH key fingerprint: SHA256:bdV0x+wdQHGJ6LgmstH3KV8OpWY+OOFmJcPcB0wQPV8
12 changed files with 2901 additions and 2 deletions

18
Cargo.toml Normal file
View file

@ -0,0 +1,18 @@
[package]
name = "tinyupload"
version = "0.2.0"
edition = "2021"
[dependencies]
axum = { version = "0.7.7", features = ["multipart"] }
serde = { version = "1.0", features = ["derive"] }
tokio = { version = "1.0", features = ["full"] }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
sqlx = { version = "0.8.2", features = [ "runtime-tokio", "sqlite" ] }
rand = "0.8.5"
sha2 = "0.10.8"
base64 = "0.22.1"
clap = { version = "4.5.20", features = ["derive"] }
chrono = "0.4.38"
async-stream = "0.3.6"
bytes = "1.8.0"