diff options
| author | Henrik Tjäder <henrik@tjaders.com> | 2023-02-01 21:20:23 +0100 |
|---|---|---|
| committer | Henrik Tjäder <henrik@tjaders.com> | 2023-03-01 00:35:10 +0100 |
| commit | 19c87ea79dd9f42453762d34af172a5c44b64850 (patch) | |
| tree | 105117fa8c07a6d13d72e24617d2cfef43fad44a | |
| parent | fc6343b65c79b287ba1884514698e59f87a3d47d (diff) | |
Fix cargo README paths, disable publish for xtask
Do not publish xtask crate under any circumstance
| -rw-r--r-- | rtic/Cargo.toml | 2 | ||||
| -rw-r--r-- | rtic/macros/Cargo.toml | 2 | ||||
| -rw-r--r-- | rtic/xtask/Cargo.toml | 1 |
3 files changed, 3 insertions, 2 deletions
diff --git a/rtic/Cargo.toml b/rtic/Cargo.toml index 9b8a291..7bca4c1 100644 --- a/rtic/Cargo.toml +++ b/rtic/Cargo.toml @@ -25,7 +25,7 @@ keywords = [ ] license = "MIT OR Apache-2.0" name = "rtic" -readme = "README.md" +readme = "../README.md" repository = "https://github.com/rtic-rs/rtic" version = "2.0.0-alpha.0" diff --git a/rtic/macros/Cargo.toml b/rtic/macros/Cargo.toml index 2041d37..970f666 100644 --- a/rtic/macros/Cargo.toml +++ b/rtic/macros/Cargo.toml @@ -13,7 +13,7 @@ edition = "2021" keywords = ["arm", "cortex-m", "risc-v", "embedded", "async", "runtime", "futures", "await", "no-std", "rtos", "bare-metal"] license = "MIT OR Apache-2.0" name = "rtic-macros" -readme = "../README.md" +readme = "../../README.md" repository = "https://github.com/rtic-rs/rtic" version = "2.0.0-alpha.0" diff --git a/rtic/xtask/Cargo.toml b/rtic/xtask/Cargo.toml index f1c468e..6053b91 100644 --- a/rtic/xtask/Cargo.toml +++ b/rtic/xtask/Cargo.toml @@ -2,6 +2,7 @@ name = "xtask" version = "0.1.0" edition = "2018" +publish = false [dependencies] anyhow = "1.0.43" |
