chore(xtask): Add xtask skeleton

This commit is contained in:
Ed Page 2023-04-25 02:13:56 -05:00
parent 95535a9f76
commit a675e047e7
5 changed files with 16 additions and 1 deletions

2
.cargo/config.toml Normal file
View File

@ -0,0 +1,2 @@
[alias]
xtask = "run --package xtask --"

1
.gitignore vendored
View File

@ -1,6 +1,5 @@
target
Cargo.lock
.cargo
/config.stamp
/Makefile
/config.mk

4
Cargo.lock generated
View File

@ -3694,6 +3694,10 @@ dependencies = [
"memchr",
]
[[package]]
name = "xtask"
version = "0.0.0"
[[package]]
name = "yansi"
version = "0.5.1"

7
crates/xtask/Cargo.toml Normal file
View File

@ -0,0 +1,7 @@
[package]
name = "xtask"
version = "0.0.0"
edition = "2021"
publish = false
[dependencies]

3
crates/xtask/src/main.rs Normal file
View File

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}