27 lines
828 B
TOML
27 lines
828 B
TOML
[package]
|
|
name = "acrate_nodeinfo"
|
|
version = "0.3.0"
|
|
authors = ["Stefano Pigozzi <me@steffo.eu>"]
|
|
edition = "2021"
|
|
description = "Rust typing and utilities for the NodeInfo format"
|
|
repository = "https://forge.steffo.eu/unimore/tirocinio-canali-steffo-acrate"
|
|
license = "EUPL-1.2"
|
|
keywords = ["nodeinfo", "fediverse"]
|
|
categories = ["web-programming"]
|
|
|
|
[dependencies]
|
|
acrate_rd = { path = "../acrate_rd" }
|
|
log = "0.4.22"
|
|
mediatype = { version = "0.19.18", features = ["serde"] }
|
|
reqwest = { version = "0.12.9", features = ["json", "stream"] }
|
|
serde = { version = "1.0.214", features = ["derive"] }
|
|
serde_json = "1.0.132"
|
|
thiserror = "2.0.3"
|
|
|
|
[dev-dependencies]
|
|
pretty_env_logger = "0.5.0"
|
|
tokio = { version = "1.41.1", features = ["macros", "rt-multi-thread"] }
|
|
tokio-test = "0.4.4"
|
|
|
|
[lints.clippy]
|
|
tabs-in-doc-comments = "allow"
|