26 lines
737 B
TOML
26 lines
737 B
TOML
[package]
|
|
name = "peach-jsonrpc-server"
|
|
authors = ["Andrew Reid <glyph@mycelial.technology>"]
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "JSON-RPC over HTTP for the PeachCloud system. Provides a JSON-RPC wrapper around the stats, network and oled libraries."
|
|
homepage = "https://opencollective.com/peachcloud"
|
|
repository = "https://git.coopcloud.tech/PeachCloud/peach-workspace"
|
|
readme = "README.md"
|
|
license = "AGPL-3.0-only"
|
|
publish = false
|
|
|
|
[badges]
|
|
maintenance = { status = "actively-developed" }
|
|
|
|
[dependencies]
|
|
env_logger = "0.9"
|
|
jsonrpc-core = "18"
|
|
jsonrpc-http-server = "18"
|
|
log = "0.4"
|
|
miniserde = "0.1.15"
|
|
peach-stats = { path = "../peach-stats", features = ["miniserde_support"] }
|
|
|
|
[dev-dependencies]
|
|
jsonrpc-test = "18"
|