diff options
| author | Fuwn <[email protected]> | 2022-06-28 07:48:35 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2022-06-28 07:48:35 +0000 |
| commit | e1b83688fd6ac99ed2cb4aaa452abe1f17ad4a80 (patch) | |
| tree | db1ac1ce3ceec84b9650a43033dfee5436d77859 | |
| parent | feat(germ): quick gemtext functions (diff) | |
| download | germ-e1b83688fd6ac99ed2cb4aaa452abe1f17ad4a80.tar.xz germ-e1b83688fd6ac99ed2cb4aaa452abe1f17ad4a80.zip | |
fix(germ): don't default macrosv0.3.2
| -rw-r--r-- | crates/germ/Cargo.toml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/crates/germ/Cargo.toml b/crates/germ/Cargo.toml index 3e00d5d..9561438 100644 --- a/crates/germ/Cargo.toml +++ b/crates/germ/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "germ" -version = "0.3.1" +version = "0.3.2" authors = ["Fuwn <[email protected]>"] edition = "2021" description = "The Ultimate Gemini Toolkit." @@ -18,14 +18,14 @@ categories = ["encoding"] ast = [] convert = ["ast"] default = ["ast", "convert", "meta", "request"] -macros = ["ast", "convert"] +macros = ["ast", "convert", "germ-macros-impl"] meta = [] request = ["rustls", "url", "anyhow"] quick = [] [dependencies] anyhow = { version = "1.0.57", optional = true } # `Result` -germ-macros-impl = { path = "../germ-macros-impl", version = "0.1.0" } # Germ's Macro Implementations +germ-macros-impl = { path = "../germ-macros-impl", version = "0.1.0", optional = true } # Germ's Macro Implementations rustls = { version = "0.20.5", features = [ "dangerous_configuration" ], optional = true } # TLS |