Crates.io | dxr_server |
lib.rs | dxr_server |
version | |
source | src |
created_at | 2022-06-25 11:05:22.497829 |
updated_at | 2024-12-01 14:55:14.788146 |
description | Declarative XML-RPC (server implementation) |
homepage | |
repository | https://github.com/ironthree/dxr |
max_upload_size | |
id | 612971 |
Cargo.toml error: | TOML parse error at line 19, column 1 | 19 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include` |
size | 0 |
The dxr
project provides crates for writing XML-RPC clients and servers in Rust.
This crate contains a building blocks for writing XML-RPC servers based on dxr
.
It also includes a complete XML-RPC server implementation based on the axum
web framework, which
is disabled by default. To enable the axum
support, enable the "axum"
feature of this crate.
To enable "system.multicall" support, enable the multicall
feature.