Initial Commit
This commit is contained in:
parent
5b45525331
commit
7f8d940ef5
12 changed files with 2901 additions and 2 deletions
18
Cargo.toml
Normal file
18
Cargo.toml
Normal 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"
|
||||
Loading…
Add table
Add a link
Reference in a new issue