docs(ironrdp): README.md dedicated to the meta crate (#582)

Using the top-level README.md of the repository is not ideal.

1/ It contains many information unrelated to the meta crate itself.

2/ The following attribute:

```
 #![doc = include_str!("../../../README.md")]
```

will fail at finding the README.md when built via `cargo package`.
This commit is contained in:
Benoît Cortier
2024-11-20 11:15:29 +00:00
committed by GitHub
parent 36da11c02e
commit bab049aa00
4 changed files with 10 additions and 4 deletions
-1
View File
@@ -14,7 +14,6 @@ exclude = [
]
[workspace.package]
readme = "README.md"
edition = "2021"
license = "MIT/Apache-2.0"
homepage = "https://github.com/Devolutions/IronRDP"
+2 -2
View File
@@ -1,8 +1,8 @@
[package]
name = "ironrdp"
version = "0.5.0"
description = "A Rust implementation of the Microsoft Remote Desktop Protocol (RDP)"
readme.workspace = true
readme = "README.md"
description = "A meta crate re-exporting IronRDP crates for convenience"
edition.workspace = true
license.workspace = true
homepage.workspace = true
+7
View File
@@ -0,0 +1,7 @@
# IronRDP meta crate
A meta crate re-exporting IronRDP crates for convenience.
This crate is part of the [IronRDP] project.
[IronRDP]: https://github.com/Devolutions/IronRDP
+1 -1
View File
@@ -1,4 +1,4 @@
#![doc = include_str!("../../../README.md")]
#![doc = include_str!("../README.md")]
#![doc(
html_logo_url = "https://webdevolutions.blob.core.windows.net/images/projects/devolutions/logos/devolutions-icon-shadow.svg"
)]