diff options
| -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 |