You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
757 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"
config = "0.13.3"
lazy_static = "1.4.0"