chore: add xtask scripts

This commit is contained in:
HerringtonDarkholme
2023-01-08 13:12:25 +08:00
parent 76bfcfe6ba
commit 39f8bb1687
6 changed files with 20 additions and 1 deletions
+3
View File
@@ -13,3 +13,6 @@ rustflags = [
[target.aarch64-unknown-linux-musl]
linker = "aarch64-linux-musl-gcc"
rustflags = ["-C", "target-feature=-crt-static"]
[alias]
xtask = "run --manifest-path ./xtask/Cargo.toml --"
Generated
+4
View File
@@ -1645,3 +1645,7 @@ name = "windows_x86_64_msvc"
version = "0.42.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f40009d85759725a34da6d89a94e63d7bdc50a862acf0dbc7c8e488f1edcb6f5"
[[package]]
name = "xtask"
version = "0.0.0"
+2 -1
View File
@@ -1,4 +1,5 @@
[workspace]
members = [
"crates/*"
"crates/*",
"xtask"
]
View File
+8
View File
@@ -0,0 +1,8 @@
[package]
publish = false
edition = "2021"
name = "xtask"
version = "0.0.0"
authors = ["Herrington Darkholme"]
[dependencies]
+3
View File
@@ -0,0 +1,3 @@
fn main() {
println!("hello")
}