-
-
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.
Release 0.1.0 (also add README.md files for all crates)
- Loading branch information
1 parent
d024ad4
commit 303f3bb
Showing
4 changed files
with
30 additions
and
2 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 @@ | ||
../README.md |
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 (derive macros) | ||
|
||
[![crates.io](https://img.shields.io/crates/v/dxr_derive.svg)](https://crates.io/crates/dxr_derive/) | ||
[![crates.io](https://img.shields.io/crates/d/dxr_derive.svg)](https://crates.io/crates/dxr_derive/) | ||
[![crates.io](https://img.shields.io/crates/l/dxr_derive.svg)](https://crates.io/crates/dxr_derive/) | ||
[![docs.rs](https://docs.rs/dxr_derive/badge.svg)](https://docs.rs/dxr_derive/) | ||
|
||
The dxr project provides crates for writing XML-RPC API clients and servers in Rust. | ||
|
||
This crate contains implementations of derive macros for the `FromDXR` and `ToDXR` traits. | ||
These macros are re-exported from the `dxr` crate when the `derive` 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,15 @@ | ||
# DXR: declarative XML-RPC (shared traits, types, and implementations) | ||
|
||
[![crates.io](https://img.shields.io/crates/v/dxr_derive.svg)](https://crates.io/crates/dxr_derive/) | ||
[![crates.io](https://img.shields.io/crates/d/dxr_derive.svg)](https://crates.io/crates/dxr_derive/) | ||
[![crates.io](https://img.shields.io/crates/l/dxr_derive.svg)](https://crates.io/crates/dxr_derive/) | ||
[![docs.rs](https://docs.rs/dxr_derive/badge.svg)](https://docs.rs/dxr_derive/) | ||
|
||
The dxr project provides crates for writing XML-RPC API clients and servers in Rust. | ||
|
||
This crate contains definitions of all data types, type conversion functionality, and | ||
(de)serialization implementations that are needed for dealing with XML-RPC values of | ||
all kinds. | ||
|
||
All public items are re-exported from the `dxr` crate, so this crate should be considered | ||
an internal implementation detail, and never be imported or used directly. |