Crates.io | dxr_client |
lib.rs | dxr_client |
version | |
source | src |
created_at | 2022-06-25 11:05:07.2738+00 |
updated_at | 2024-12-01 14:55:04.448422+00 |
description | Declarative XML-RPC (client implementation) |
homepage | |
repository | https://github.com/ironthree/dxr |
max_upload_size | |
id | 612969 |
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 clients based on dxr
.
It also includes an implementation of an async
XML-RPC client using reqwest
, which is disabled
by default. To enable the reqwest
support, enable the "reqwest"
feature of this crate.
To enable convenience functionality for "system.multicall" support, enable the multicall
feature.