From 0ac9cb168f4052cbbc831c52c2136f5937873afc Mon Sep 17 00:00:00 2001 From: Melody Horn Date: Tue, 6 Oct 2020 18:45:20 -0600 Subject: [PATCH] use latest gemtext --- Cargo.lock | 8 ++++---- Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c38dbe2..ff1dec6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -7,14 +7,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "gemtext" -version = "0.2.0" -source = "git+https://tulpa.dev/boringcactus/maj.git?branch=make-gemtext-node-clone#c07d81077a46f618edb38f4c3b482802d377818c" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "md2gemtext" version = "0.1.0" dependencies = [ - "gemtext 0.2.0 (git+https://tulpa.dev/boringcactus/maj.git?branch=make-gemtext-node-clone)", + "gemtext 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "pulldown-cmark 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -48,7 +48,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [metadata] "checksum bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693" -"checksum gemtext 0.2.0 (git+https://tulpa.dev/boringcactus/maj.git?branch=make-gemtext-node-clone)" = "" +"checksum gemtext 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "2eb76a04b598440b386caa0893dd7b8228a4b555692d2e4f04636a238b5c4b5b" "checksum memchr 2.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3728d817d99e5ac407411fa471ff9800a778d88a24685968b36824eaf4bee400" "checksum pulldown-cmark 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ffade02495f22453cd593159ea2f59827aae7f53fa8323f756799b670881dcf8" "checksum unicase 2.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6" diff --git a/Cargo.toml b/Cargo.toml index db9d1ab..9925abb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,5 +12,5 @@ keywords = ["gemini", "markdown"] maintenance = { status = "experimental" } [dependencies] -gemtext = { version = "0.2.0", git = "https://tulpa.dev/boringcactus/maj.git", branch = "make-gemtext-node-clone" } +gemtext = "0.2.1" pulldown-cmark = { version = "0.8", default-features = false }