From 3468a9bf05002024ab7cda74279a636c82051e8c Mon Sep 17 00:00:00 2001 From: Bastien Orivel Date: Tue, 21 May 2024 23:26:50 +0200 Subject: [PATCH] Oops, apwm dependency should be a git one, not a path --- Cargo.lock | 1 + Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Cargo.lock b/Cargo.lock index 627223d..3b287b8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -121,6 +121,7 @@ dependencies = [ [[package]] name = "apwm" version = "0.1.0" +source = "git+https://github.com/Eijebong/APWM.git#0dfee37cf04402d3796c924f179c04168d89bbc6" dependencies = [ "anyhow", "git2", diff --git a/Cargo.toml b/Cargo.toml index 9b6e61f..2d3f710 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -apwm = { path = "../apwm" } +apwm = { git = "https://github.com/Eijebong/APWM.git" } anyhow = "1.0.79" askama = { version = "0.12.1", features = ["with-rocket", "markdown"] } askama_rocket = "0.12.0"