From 78471acec909c0fe78ef809b8353f9858b745264 Mon Sep 17 00:00:00 2001 From: Mathspy Date: Wed, 22 Dec 2021 16:52:22 +0200 Subject: [PATCH] Switch to relying on notion-generator from git For now `notion-generator` can't be published to crates.io because of relying on the fork of time crate Might be able to published it after https://github.com/time-rs/time/pull/407 --- Cargo.lock | 1 + Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Cargo.lock b/Cargo.lock index b94f3d4..abc04bd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -667,6 +667,7 @@ dependencies = [ [[package]] name = "notion-generator" version = "0.1.3" +source = "git+https://github.com/Mathspy/notion-generator?rev=ed374ab#ed374ab1e5c89eed5b597de174f325cb8a61aec0" dependencies = [ "anyhow", "async-recursion", diff --git a/Cargo.toml b/Cargo.toml index 577df53..0f90a50 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,7 +14,7 @@ either = { version = "1" } futures-util = { version = "0.3" } itertools = { version = "0.10" } maud = { version = "0.23" } -notion-generator = { path = "../notion-generator" } +notion-generator = { git = "https://github.com/Mathspy/notion-generator", rev = "ed374ab" } reqwest = { version = "0.11", default-features = false, features = ["json", "rustls-tls-native-roots"] } serde = { version = "1", features = ["derive"] } serde_json = { version = "1" }