2024-02-26 08:41:24 -05:00
|
|
|
[package]
|
|
|
|
name = "morethantext"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2024-02-29 11:20:20 -05:00
|
|
|
axum = "0.7.4"
|
2024-03-11 10:45:20 -04:00
|
|
|
axum-extra = { version = "0.9.2", features = ["cookie-signed"] }
|
2024-02-29 11:20:20 -05:00
|
|
|
clap = { version = "4.5.1", features = ["derive"] }
|
2024-03-17 15:40:00 -04:00
|
|
|
rand = "0.8.5"
|
2024-02-29 11:20:20 -05:00
|
|
|
tokio = { version = "1.36.0", features = ["full"] }
|
2024-05-05 23:18:42 -04:00
|
|
|
uuid = { version = "1.8.0", features = ["v4"] }
|