From 9438bdf2b7c46d173f175874811c028c78d723a9 Mon Sep 17 00:00:00 2001 From: Jesse Morgan Date: Thu, 26 Dec 2024 17:11:49 -0800 Subject: Initial commit --- Cargo.toml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 Cargo.toml (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..0ee465e --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,27 @@ +[package] +name = "mp32rss" +version = "0.1.0" +edition = "2021" +authors = ["Jesse Morgan "] +description = "Generates static websites/podcast feeds from files in S3" +repository = "https://git.jesterpm.net/pub/jesterpm/mp32rss.git/" +license = "MIT" + +[dependencies] +aws-config = { version = "1.1.7", features = ["behavior-version-latest"] } +aws-sdk-s3 = "1.65" +aws-smithy-types-convert = { version = "0.60", features = ["convert-chrono"] } +bytes = "1.9" +chrono = { version = "0.4", features = ["serde"] } +clap = { version = "4.5", features = ["derive"] } +env_logger = "0.11" +futures = "0.3" +lofty = "0.21" +log = "0.4" +regex = "1.11" +serde = { version = "1.0", features = ["derive"] } +serde_json = "1.0" +str_slug = "0.1" +tempfile = "3.14" +tera = "1.20" +tokio = { version = "1.20", features = ["full"] } -- cgit v1.2.3