finger-protocol 0.1.0

An implementation of the Finger protocol (finger://, RFC 1288) and its WebFinger successor (RFC 7033): async finger client, plus WebFinger request construction and JRD parsing. The oldest way to ask who someone is.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.88"
name = "finger-protocol"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An implementation of the Finger protocol (finger://, RFC 1288) and its WebFinger successor (RFC 7033): async finger client, plus WebFinger request construction and JRD parsing. The oldest way to ask who someone is."
readme = "README.md"
keywords = [
    "finger",
    "webfinger",
    "smolweb",
    "protocol",
    "jrd",
]
categories = ["network-programming"]
license = "MIT"
repository = "https://github.com/merely-made/smolweb"
resolver = "2"

[features]
client = [
    "dep:tokio",
    "dep:url",
]
default = [
    "client",
    "webfinger",
]
webfinger = [
    "dep:serde",
    "dep:serde_json",
    "dep:percent-encoding",
]

[lib]
name = "finger_protocol"
path = "src/lib.rs"

[dependencies.percent-encoding]
version = "2.3"
optional = true

[dependencies.serde]
version = "1"
features = ["derive"]
optional = true

[dependencies.serde_json]
version = "1"
optional = true

[dependencies.tokio]
version = "1"
features = [
    "net",
    "io-util",
]
optional = true
default-features = false

[dependencies.url]
version = "2.5"
optional = true

[dev-dependencies.tokio]
version = "1"
features = [
    "macros",
    "rt",
]
default-features = false