29 lines
881 B
TOML
29 lines
881 B
TOML
[package]
|
|
name = "ephemeral"
|
|
description = "An ephemeral file hosting server"
|
|
license = "AGPL-3.0"
|
|
authors = ["Volkor <me@volkor.me>"]
|
|
repository = "https://git.volkor.me/Volkor/ephemeral/"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
ramhorns = "0.14.0"
|
|
salvo = { version = "*", features = ["logging", "serve-static"] }
|
|
sqlx = { version = "0.6", features = [ "runtime-tokio-rustls", "sqlite", "postgres" ] }
|
|
once_cell = "1.16.0"
|
|
tokio = { version = "1", features = ["macros"] }
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
nanoid = "0.4.0"
|
|
chrono = "0.4.23"
|
|
rand = "0.8.5"
|
|
figment = { version = "0.10.10", features = ["toml"] }
|
|
lazy_static = "1.4.0"
|
|
chrono-humanize = "0.2.2"
|
|
magic = "0.13.0"
|
|
serde_derive = "1.0.164"
|
|
serde = "1.0.164"
|