From 96c6f2154007649c32fa5c29e04bb686df00dfff Mon Sep 17 00:00:00 2001 From: "Matthias P. Braendli" Date: Mon, 1 Jan 2024 23:05:29 +0100 Subject: Create scaffolding --- Cargo.toml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 Cargo.toml (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..ace615e --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,23 @@ +[package] +name = "cats-radio-node" +version = "0.1.0" +edition = "2021" +authors = ["Matthias HB9EGM "] +license = "MIT" + +[dependencies] +anyhow = "1.0" +askama = { version = "0.12", features = ["with-axum"] } +askama_axum = "0.4" +axum = "0.7" +simple_logger = "4.3" +log = "0.4" +serde = { version = "1.0", features = ["derive"] } +serde_json = "1.0" +toml = "0.8" +sqlx = { version = "0.7", features = [ "runtime-tokio-rustls", "sqlite"]} +tokio = { version = "1", features = ["full"] } +tower-http = { version = "0.5.0", features = ["fs"] } + +# Websockets example in https://github.com/tokio-rs/axum/tree/main/examples/websockets +# tokio-tungstenite = "0.21" -- cgit v1.2.3