projects involving the gemini protocol
[package]
authors     = ["Matthew Ess <mat@mat.services>"]
categories  = ["network-programming"]
description = "Small set of types useful for working with the Gemini protocol"
edition     = "2018"
keywords    = ["gemini"]
license     = "GPL-3.0-only"
name        = "gemini"
readme      = "README.md"
repository  = "https://nest.pijul.com/mat/gemini-projects"
version     = "0.0.5"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[features]
default = ["parsers"]
parsers = ["nom", "paste"]

[dependencies]
thiserror = "1.0.24"
url       = "2.2.1"

nom   = { version = "6.1.2", optional = true }
paste = { version = "1.0.5", optional = true }