initial commit
This commit is contained in:
commit
b61931d8a1
17 changed files with 5200 additions and 0 deletions
22
Cargo.toml
Normal file
22
Cargo.toml
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
[package]
|
||||
name = "kanzashi-cdn"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
|
||||
[dependencies]
|
||||
aws-config = "1.10.0"
|
||||
aws-credential-types = "1.3.0"
|
||||
aws-sdk-s3 = "1.139.0"
|
||||
dotenvy = "0.15.7"
|
||||
ed25519-dalek = "3.0.0"
|
||||
hex = "0.4.3"
|
||||
hmac = "0.13.0"
|
||||
jsonwebtoken = "10.4.0"
|
||||
rand = "0.10.2"
|
||||
rocket = { version = "0.5.1", features = ["json"] }
|
||||
rocket_dyn_templates = { version = "0.2.0", features = ["tera"] }
|
||||
rusqlite = { version = "0.40.1", features = ["bundled-sqlcipher"] }
|
||||
serde = { version = "1.0.229", features = ["derive"] }
|
||||
sha2 = "0.11.0"
|
||||
tokio = { version = "1.53.1", features = ["full"] }
|
||||
uuid = { version = "1.24.0", features = ["v4"] }
|
||||
Loading…
Reference in a new issue