-
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update README files for new workspace layout and new crates
- Loading branch information
1 parent
d90d586
commit ad4a447
Showing
5 changed files
with
51 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# DXR: declarative XML-RPC (client implementation) | ||
|
||
[![crates.io](https://img.shields.io/crates/v/dxr_client.svg)](https://crates.io/crates/dxr_client/) | ||
[![crates.io](https://img.shields.io/crates/d/dxr_client.svg)](https://crates.io/crates/dxr_client/) | ||
[![crates.io](https://img.shields.io/crates/l/dxr_client.svg)](https://crates.io/crates/dxr_client/) | ||
[![docs.rs](https://docs.rs/dxr_client/badge.svg)](https://docs.rs/dxr_client/) | ||
|
||
The dxr project provides crates for writing XML-RPC API clients and servers in Rust. | ||
|
||
This crate contains an implementation of an `async` XML-RPC client using `reqwest`. The client | ||
functionality is re-exported from the `dxr` crate when the `client` feature is enabled, so | ||
this crate should be considered an internal implementation detail, and never be imported or | ||
used directly. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# DXR: declarative XML-RPC (server implementation) | ||
|
||
[![crates.io](https://img.shields.io/crates/v/dxr_server.svg)](https://crates.io/crates/dxr_server/) | ||
[![crates.io](https://img.shields.io/crates/d/dxr_server.svg)](https://crates.io/crates/dxr_server/) | ||
[![crates.io](https://img.shields.io/crates/l/dxr_server.svg)](https://crates.io/crates/dxr_server/) | ||
[![docs.rs](https://docs.rs/dxr_server/badge.svg)](https://docs.rs/dxr_server/) | ||
|
||
The dxr project provides crates for writing XML-RPC API clients and servers in Rust. | ||
|
||
This crate contains a basic implementation of an `async` XML-RPC server. The server functionality | ||
is re-exported from the `dxr` crate when the `server` feature is enabled, so this crate should be | ||
considered an internal implementation detail, and never be imported or used directly. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# DXR: declarative XML-RPC (axum server) | ||
|
||
[![crates.io](https://img.shields.io/crates/v/dxr_server_axum.svg)](https://crates.io/crates/dxr_server_axum/) | ||
[![crates.io](https://img.shields.io/crates/d/dxr_server_axum.svg)](https://crates.io/crates/dxr_server_axum/) | ||
[![crates.io](https://img.shields.io/crates/l/dxr_server_axum.svg)](https://crates.io/crates/dxr_server_axum/) | ||
[![docs.rs](https://docs.rs/dxr_server_axum/badge.svg)](https://docs.rs/dxr_server_axum/) | ||
|
||
The dxr project provides crates for writing XML-RPC API clients and servers in Rust. | ||
|
||
This crate contains an implementation of an `async` XML-RPC server using `axum`. This functionality | ||
is re-exported from the `dxr` crate when the `server-axum` feature is enabled, so this crate should be | ||
considered an internal implementation detail, and never be imported or used directly. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# DXR: declarative XML-RPC (shared implementation details) | ||
|
||
[![crates.io](https://img.shields.io/crates/v/dxr_shared.svg)](https://crates.io/crates/dxr_shared/) | ||
[![crates.io](https://img.shields.io/crates/d/dxr_shared.svg)](https://crates.io/crates/dxr_shared/) | ||
[![crates.io](https://img.shields.io/crates/l/dxr_shared.svg)](https://crates.io/crates/dxr_shared/) | ||
[![docs.rs](https://docs.rs/dxr_shared/badge.svg)](https://docs.rs/dxr_shared/) | ||
|
||
The dxr project provides crates for writing XML-RPC API clients and servers in Rust. | ||
|
||
This crate contains implementations of type conversions between XML strings, XML-RPC values, and | ||
the corresponding Rust types. This functionality should be considered an internal implementation | ||
detail, and never be imported or used directly. |