From 2c0aeef70044ce8c11dfed8d198cf5cc34836a9e Mon Sep 17 00:00:00 2001 From: jude Date: Sun, 24 Mar 2024 20:55:07 +0000 Subject: [PATCH] Fix build. Bump version --- Cargo.lock | 26 +------------------------- Cargo.toml | 17 ++++++++--------- 2 files changed, 9 insertions(+), 34 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b958525..ea4a699 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1612,29 +1612,6 @@ dependencies = [ "libc", ] -[[package]] -name = "lazy-regex" -version = "3.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5d12be4595afdf58bd19e4a9f4e24187da2a66700786ff660a418e9059937a4c" -dependencies = [ - "lazy-regex-proc_macros", - "once_cell", - "regex", -] - -[[package]] -name = "lazy-regex-proc_macros" -version = "3.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "44bcd58e6c97a7fcbaffcdc95728b393b8d98933bfadad49ed4097845b57ef0b" -dependencies = [ - "proc-macro2", - "quote", - "regex", - "syn 2.0.55", -] - [[package]] name = "lazy_static" version = "1.4.0" @@ -2497,7 +2474,7 @@ checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f" [[package]] name = "reminder-rs" -version = "1.7.3" +version = "1.7.4" dependencies = [ "axum", "base64 0.21.7", @@ -2508,7 +2485,6 @@ dependencies = [ "env_logger", "extract_derive", "futures", - "lazy-regex", "lazy_static", "levenshtein", "log", diff --git a/Cargo.toml b/Cargo.toml index f4c1481..28f7650 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reminder-rs" -version = "1.7.3" +version = "1.7.4" authors = ["Jude Southworth "] edition = "2021" license = "AGPL-3.0 only" @@ -11,7 +11,6 @@ poise = "0.6.1" dotenv = "0.15" tokio = { version = "1", features = ["process", "full"] } reqwest = { version = "0.12", features = ["json"] } -lazy-regex = "3.1" regex = "1.10" log = "0.4" env_logger = "0.11" @@ -49,13 +48,13 @@ suggests = "mysql-server-8.0, nginx" maintainer-scripts = "debian" assets = [ ["target/release/reminder-rs", "usr/bin/reminder-rs", "755"], - ["web/static/css/*", "lib/reminder-rs/static/css", "644"], - ["web/static/favicon/*", "lib/reminder-rs/static/favicon", "644"], - ["web/static/img/*", "lib/reminder-rs/static/img", "644"], - ["web/static/js/*", "lib/reminder-rs/static/js", "644"], - ["web/static/webfonts/*", "lib/reminder-rs/static/webfonts", "644"], - ["web/static/site.webmanifest", "lib/reminder-rs/static/site.webmanifest", "644"], - ["web/templates/**/*", "lib/reminder-rs/templates", "644"], + ["static/css/*", "lib/reminder-rs/static/css", "644"], + ["static/favicon/*", "lib/reminder-rs/static/favicon", "644"], + ["static/img/*", "lib/reminder-rs/static/img", "644"], + ["static/js/*", "lib/reminder-rs/static/js", "644"], + ["static/webfonts/*", "lib/reminder-rs/static/webfonts", "644"], + ["static/site.webmanifest", "lib/reminder-rs/static/site.webmanifest", "644"], + ["templates/**/*", "lib/reminder-rs/templates", "644"], ["reminder-dashboard/dist/static/assets/*", "lib/reminder-rs/static/assets", "644"], ["reminder-dashboard/dist/index.html", "lib/reminder-rs/static/index.html", "644"], ["conf/default.env", "etc/reminder-rs/config.env", "600"],