[package]
name = "gopher-protocol"
version = "0.1.0"
edition = "2024"
rust-version.workspace = true
license = "MIT"
repository = "https://github.com/merely-made/smolweb"
description = "An implementation of the Gopher protocol (gopher://) and its Gopher+ successor: async client, RFC 1436 menu parser with RFC 4266 URLs, and Gopher+ attribute blocks, alternate views, and ASK forms. The parser half has no dependencies."
keywords = ["gopher", "gopher-plus", "smolweb", "protocol", "gemini"]
categories = ["network-programming"]
readme = "README.md"
[features]
default = ["client"]
client = ["dep:tokio", "dep:url"]
[dependencies]
url = { version = "2.5", optional = true }
tokio = { version = "1", default-features = false, features = [
"net",
"io-util",
], optional = true }
[dev-dependencies]
tokio = { version = "1", default-features = false, features = [
"macros",
"rt",
] }