From ec17af924767a2ae3c5180d9ea25193d071e5661 Mon Sep 17 00:00:00 2001 From: fxqnlr Date: Mon, 17 Jun 2024 12:01:22 +0200 Subject: Closes #20. Use chrono and seperate timers in logging --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index 7b10baa..c633f57 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ edition = "2021" axum = { version = "0.7", features = ["ws"] } tokio = { version = "1.38", features = ["macros", "rt-multi-thread"] } tracing = "0.1" -tracing-subscriber = { version = "0.3", features = ["env-filter", "local-time", "time"] } +tracing-subscriber = { version = "0.3", features = ["env-filter", "local-time", "chrono"] } time = { version = "0.3", features = ["macros"] } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" -- cgit v1.2.3 From 45724c4a8b293e8696ef487368f72f90a5c7a01d Mon Sep 17 00:00:00 2001 From: fxqnlr Date: Mon, 17 Jun 2024 12:02:44 +0200 Subject: Version bump --- Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'Cargo.toml') diff --git a/Cargo.lock b/Cargo.lock index dcdec98..750d578 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2388,7 +2388,7 @@ dependencies = [ [[package]] name = "webol" -version = "0.4.1" +version = "0.4.2" dependencies = [ "axum", "axum-macros", diff --git a/Cargo.toml b/Cargo.toml index c633f57..d8b3032 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "webol" -version = "0.4.1" +version = "0.4.2" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/README.md b/README.md index 790f9c2..cacc00d 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ minimal `docker-compose.yaml`: ```yaml services: webol: - image: ghcr.io/fxqnlr/webol:0.4.1 + image: ghcr.io/fxqnlr/webol:latest container_name: webol restart: unless-stopped volumes: -- cgit v1.2.3