aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 39a0401a6f5ced312ad183321fcc259b846f7d96 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[package]
name = "germ"
version = "0.2.8"
authors = ["Fuwn <[email protected]>"]
edition = "2021"
description = "The Ultimate Gemini Toolkit."
documentation = "https://docs.rs/germ"
readme = "README.md"
homepage = "https://github.com/gemrest/germ"
repository = "https://github.com/gemrest/germ"
license = "GPL-3.0-only"
keywords = ["gemini", "parser", "lexer", "markdown", "converter"]
categories = ["encoding"]

[features]
ast = []
convert = ["ast"]
default = ["ast", "convert", "meta", "request"]
meta = []
request = ["rustls", "url", "anyhow"]

[dependencies]
anyhow = { version = "1.0.57", optional = true } # `Result`
rustls = { version = "0.20.5", features = [
  "dangerous_configuration"
], optional = true } # TLS
url = { version = "2.2.2", optional = true } # URL Validation