aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFuwn <[email protected]>2022-06-28 08:03:40 +0000
committerFuwn <[email protected]>2022-06-28 08:03:40 +0000
commit50d118840448614b6309621faccc595a817782d4 (patch)
tree1ad05b1d6c0f81ff6924e0dfdac8a51b3d2f4af1
parentfix(germ): don't default macros (diff)
downloadgerm-50d118840448614b6309621faccc595a817782d4.tar.xz
germ-50d118840448614b6309621faccc595a817782d4.zip
fix(crate): crate locations for readmev0.3.3
-rw-r--r--Cargo.toml2
-rw-r--r--germ-macros-impl/Cargo.toml (renamed from crates/germ-macros-impl/Cargo.toml)4
-rw-r--r--germ-macros-impl/src/lib.rs (renamed from crates/germ-macros-impl/src/lib.rs)0
-rw-r--r--germ/Cargo.toml (renamed from crates/germ/Cargo.toml)4
-rw-r--r--germ/examples/ast.rs (renamed from crates/germ/examples/ast.rs)0
-rw-r--r--germ/examples/ast_to_gemtext.rs (renamed from crates/germ/examples/ast_to_gemtext.rs)0
-rw-r--r--germ/examples/convert.html (renamed from crates/germ/examples/convert.html)0
-rw-r--r--germ/examples/convert.md (renamed from crates/germ/examples/convert.md)0
-rw-r--r--germ/examples/html.rs (renamed from crates/germ/examples/html.rs)0
-rw-r--r--germ/examples/markdown.rs (renamed from crates/germ/examples/markdown.rs)0
-rw-r--r--germ/examples/meta.rs (renamed from crates/germ/examples/meta.rs)0
-rw-r--r--germ/examples/request.rs (renamed from crates/germ/examples/request.rs)0
-rw-r--r--germ/src/ast.rs (renamed from crates/germ/src/ast.rs)0
-rw-r--r--germ/src/ast/container.rs (renamed from crates/germ/src/ast/container.rs)0
-rw-r--r--germ/src/ast/macros.rs (renamed from crates/germ/src/ast/macros.rs)0
-rw-r--r--germ/src/ast/node.rs (renamed from crates/germ/src/ast/node.rs)0
-rw-r--r--germ/src/convert.rs (renamed from crates/germ/src/convert.rs)0
-rw-r--r--germ/src/convert/html.rs (renamed from crates/germ/src/convert/html.rs)0
-rw-r--r--germ/src/convert/macros.rs (renamed from crates/germ/src/convert/macros.rs)0
-rw-r--r--germ/src/convert/markdown.rs (renamed from crates/germ/src/convert/markdown.rs)0
-rw-r--r--germ/src/lib.rs (renamed from crates/germ/src/lib.rs)2
-rw-r--r--germ/src/meta.rs (renamed from crates/germ/src/meta.rs)0
-rw-r--r--germ/src/quick.rs (renamed from crates/germ/src/quick.rs)0
-rw-r--r--germ/src/request.rs (renamed from crates/germ/src/request.rs)0
-rw-r--r--germ/src/request/response.rs (renamed from crates/germ/src/request/response.rs)0
-rw-r--r--germ/src/request/status.rs (renamed from crates/germ/src/request/status.rs)0
-rw-r--r--germ/src/request/verifier.rs (renamed from crates/germ/src/request/verifier.rs)0
-rw-r--r--germ/tests/ast.rs (renamed from crates/germ/tests/ast.rs)0
-rw-r--r--germ/tests/convert.rs (renamed from crates/germ/tests/convert.rs)0
-rw-r--r--germ/tests/meta.rs (renamed from crates/germ/tests/meta.rs)0
-rw-r--r--germ/tests/quick.rs (renamed from crates/germ/tests/quick.rs)0
-rw-r--r--germ/tests/status.rs (renamed from crates/germ/tests/status.rs)0
32 files changed, 6 insertions, 6 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 550daba..75b09f2 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,4 +1,4 @@
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
-members = ["crates/germ", "crates/germ-macros-impl"]
+members = ["germ", "germ-macros-impl"]
diff --git a/crates/germ-macros-impl/Cargo.toml b/germ-macros-impl/Cargo.toml
index 90bf092..8307d93 100644
--- a/crates/germ-macros-impl/Cargo.toml
+++ b/germ-macros-impl/Cargo.toml
@@ -2,12 +2,12 @@
[package]
name = "germ-macros-impl"
-version = "0.1.0"
+version = "0.1.1"
authors = ["Fuwn <[email protected]>"]
edition = "2021"
description = "Germ Macro Implementations"
documentation = "https://docs.rs/germ"
-readme = "../../README.md"
+readme = "../README.md"
homepage = "https://github.com/gemrest/germ"
repository = "https://github.com/gemrest/germ"
license = "GPL-3.0-only"
diff --git a/crates/germ-macros-impl/src/lib.rs b/germ-macros-impl/src/lib.rs
index 30fdd81..30fdd81 100644
--- a/crates/germ-macros-impl/src/lib.rs
+++ b/germ-macros-impl/src/lib.rs
diff --git a/crates/germ/Cargo.toml b/germ/Cargo.toml
index 9561438..59e0434 100644
--- a/crates/germ/Cargo.toml
+++ b/germ/Cargo.toml
@@ -2,12 +2,12 @@
[package]
name = "germ"
-version = "0.3.2"
+version = "0.3.3"
authors = ["Fuwn <[email protected]>"]
edition = "2021"
description = "The Ultimate Gemini Toolkit."
documentation = "https://docs.rs/germ"
-readme = "../../README.md"
+readme = "../README.md"
homepage = "https://github.com/gemrest/germ"
repository = "https://github.com/gemrest/germ"
license = "GPL-3.0-only"
diff --git a/crates/germ/examples/ast.rs b/germ/examples/ast.rs
index 884bd91..884bd91 100644
--- a/crates/germ/examples/ast.rs
+++ b/germ/examples/ast.rs
diff --git a/crates/germ/examples/ast_to_gemtext.rs b/germ/examples/ast_to_gemtext.rs
index 5ceef21..5ceef21 100644
--- a/crates/germ/examples/ast_to_gemtext.rs
+++ b/germ/examples/ast_to_gemtext.rs
diff --git a/crates/germ/examples/convert.html b/germ/examples/convert.html
index cdfde66..cdfde66 100644
--- a/crates/germ/examples/convert.html
+++ b/germ/examples/convert.html
diff --git a/crates/germ/examples/convert.md b/germ/examples/convert.md
index ea553ee..ea553ee 100644
--- a/crates/germ/examples/convert.md
+++ b/germ/examples/convert.md
diff --git a/crates/germ/examples/html.rs b/germ/examples/html.rs
index 541c01e..541c01e 100644
--- a/crates/germ/examples/html.rs
+++ b/germ/examples/html.rs
diff --git a/crates/germ/examples/markdown.rs b/germ/examples/markdown.rs
index c14cdc5..c14cdc5 100644
--- a/crates/germ/examples/markdown.rs
+++ b/germ/examples/markdown.rs
diff --git a/crates/germ/examples/meta.rs b/germ/examples/meta.rs
index a9f4077..a9f4077 100644
--- a/crates/germ/examples/meta.rs
+++ b/germ/examples/meta.rs
diff --git a/crates/germ/examples/request.rs b/germ/examples/request.rs
index e33710f..e33710f 100644
--- a/crates/germ/examples/request.rs
+++ b/germ/examples/request.rs
diff --git a/crates/germ/src/ast.rs b/germ/src/ast.rs
index 8c00b52..8c00b52 100644
--- a/crates/germ/src/ast.rs
+++ b/germ/src/ast.rs
diff --git a/crates/germ/src/ast/container.rs b/germ/src/ast/container.rs
index d9e4d18..d9e4d18 100644
--- a/crates/germ/src/ast/container.rs
+++ b/germ/src/ast/container.rs
diff --git a/crates/germ/src/ast/macros.rs b/germ/src/ast/macros.rs
index c2e5a85..c2e5a85 100644
--- a/crates/germ/src/ast/macros.rs
+++ b/germ/src/ast/macros.rs
diff --git a/crates/germ/src/ast/node.rs b/germ/src/ast/node.rs
index 04296ff..04296ff 100644
--- a/crates/germ/src/ast/node.rs
+++ b/germ/src/ast/node.rs
diff --git a/crates/germ/src/convert.rs b/germ/src/convert.rs
index 2e323e1..2e323e1 100644
--- a/crates/germ/src/convert.rs
+++ b/germ/src/convert.rs
diff --git a/crates/germ/src/convert/html.rs b/germ/src/convert/html.rs
index 7b1cafe..7b1cafe 100644
--- a/crates/germ/src/convert/html.rs
+++ b/germ/src/convert/html.rs
diff --git a/crates/germ/src/convert/macros.rs b/germ/src/convert/macros.rs
index ca29050..ca29050 100644
--- a/crates/germ/src/convert/macros.rs
+++ b/germ/src/convert/macros.rs
diff --git a/crates/germ/src/convert/markdown.rs b/germ/src/convert/markdown.rs
index a38da9f..a38da9f 100644
--- a/crates/germ/src/convert/markdown.rs
+++ b/germ/src/convert/markdown.rs
diff --git a/crates/germ/src/lib.rs b/germ/src/lib.rs
index ddab063..83bec4c 100644
--- a/crates/germ/src/lib.rs
+++ b/germ/src/lib.rs
@@ -27,7 +27,7 @@
clippy::nursery,
clippy::pedantic
)]
-#![doc = include_str!("../../../README.md")]
+#![doc = include_str!("../../README.md")]
#![recursion_limit = "128"]
#[cfg(feature = "ast")]
diff --git a/crates/germ/src/meta.rs b/germ/src/meta.rs
index f8a9dfb..f8a9dfb 100644
--- a/crates/germ/src/meta.rs
+++ b/germ/src/meta.rs
diff --git a/crates/germ/src/quick.rs b/germ/src/quick.rs
index d952b08..d952b08 100644
--- a/crates/germ/src/quick.rs
+++ b/germ/src/quick.rs
diff --git a/crates/germ/src/request.rs b/germ/src/request.rs
index 07d3552..07d3552 100644
--- a/crates/germ/src/request.rs
+++ b/germ/src/request.rs
diff --git a/crates/germ/src/request/response.rs b/germ/src/request/response.rs
index 5e1f436..5e1f436 100644
--- a/crates/germ/src/request/response.rs
+++ b/germ/src/request/response.rs
diff --git a/crates/germ/src/request/status.rs b/germ/src/request/status.rs
index f46059a..f46059a 100644
--- a/crates/germ/src/request/status.rs
+++ b/germ/src/request/status.rs
diff --git a/crates/germ/src/request/verifier.rs b/germ/src/request/verifier.rs
index d6511c3..d6511c3 100644
--- a/crates/germ/src/request/verifier.rs
+++ b/germ/src/request/verifier.rs
diff --git a/crates/germ/tests/ast.rs b/germ/tests/ast.rs
index c91d4b7..c91d4b7 100644
--- a/crates/germ/tests/ast.rs
+++ b/germ/tests/ast.rs
diff --git a/crates/germ/tests/convert.rs b/germ/tests/convert.rs
index de1baf2..de1baf2 100644
--- a/crates/germ/tests/convert.rs
+++ b/germ/tests/convert.rs
diff --git a/crates/germ/tests/meta.rs b/germ/tests/meta.rs
index 70c8adc..70c8adc 100644
--- a/crates/germ/tests/meta.rs
+++ b/germ/tests/meta.rs
diff --git a/crates/germ/tests/quick.rs b/germ/tests/quick.rs
index 255acd9..255acd9 100644
--- a/crates/germ/tests/quick.rs
+++ b/germ/tests/quick.rs
diff --git a/crates/germ/tests/status.rs b/germ/tests/status.rs
index 51f3f66..51f3f66 100644
--- a/crates/germ/tests/status.rs
+++ b/germ/tests/status.rs