Skip to content

Commit c50dd2e

Browse files
committed
Add missing package metadata to publish the crates
1 parent 29a8fff commit c50dd2e

File tree

3 files changed

+20
-15
lines changed

3 files changed

+20
-15
lines changed

crates/tracel-xtask-macros/Cargo.toml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
11
[package]
2-
name = "tracel-xtask-macros"
2+
authors = ["Tracel Technologies Inc."]
3+
categories = ["Command-line interface", "Command line utilities", "Development tools"]
4+
description = "Macros for tracel-xtask crate."
5+
keywords = ["xtask", "ci", "cicd", "cli", "cargo", "extensible", "macros"]
36
edition.workspace = true
4-
version.workspace = true
57
license.workspace = true
8+
name = "tracel-xtask-macros"
69
readme.workspace = true
10+
repository = "https://github.com/tracel-ai/xtask"
11+
version.workspace = true
12+
rust-version = "1.79"
713

814
[lib]
915
proc-macro = true

crates/tracel-xtask/Cargo.toml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
11
[package]
2-
name = "tracel-xtask"
2+
authors = ["Tracel Technologies Inc."]
3+
categories = ["Command-line interface", "Command line utilities", "Development tools"]
4+
description = "Reusable and Extensible xtask commands to manage repositories."
5+
keywords = ["xtask", "ci", "cicd", "cli", "cargo", "extensible"]
36
edition.workspace = true
4-
version.workspace = true
57
license.workspace = true
8+
name = "tracel-xtask"
69
readme.workspace = true
10+
repository = "https://github.com/tracel-ai/xtask"
11+
version.workspace = true
12+
rust-version = "1.79"
713

814
[dependencies]
915
anyhow = { workspace = true }

crates/tracel-xtask/src/commands/test.rs

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -133,17 +133,10 @@ pub fn run_integration(target: &Target, args: &TestCmdArgs) -> anyhow::Result<()
133133
match target {
134134
Target::Workspace => {
135135
info!("Workspace Integration Tests");
136-
let mut cmd_args = vec![
137-
"test",
138-
"--workspace",
139-
"--test",
140-
"*",
141-
"--color",
142-
"always",
143-
]
144-
.into_iter()
145-
.map(|s| s.to_string())
146-
.collect::<Vec<String>>();
136+
let mut cmd_args = vec!["test", "--workspace", "--test", "*", "--color", "always"]
137+
.into_iter()
138+
.map(|s| s.to_string())
139+
.collect::<Vec<String>>();
147140
push_optional_args(&mut cmd_args, args);
148141
run_process_for_workspace(
149142
"cargo",

0 commit comments

Comments
 (0)