Skip to content

Commit e9a4b28

Browse files
committed
Make --project optional in docker command
1 parent b2847a4 commit e9a4b28

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ members = [
1111

1212
[workspace.package]
1313
edition = "2021"
14-
version = "2.0.0"
14+
version = "2.0.1"
1515
license = "MIT OR Apache-2.0"
1616
readme = "README.md"
1717

crates/tracel-xtask-macros/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ fn get_additional_cmd_args_map() -> HashMap<&'static str, proc_macro2::TokenStre
261261
#[arg(short, long, required = false)]
262262
pub build: bool,
263263
#[doc = r"Project name."]
264-
#[arg(short, long, required = true)]
264+
#[arg(short, long, default_value = "xtask")]
265265
pub project: String,
266266
#[doc = r"Space separated list of service subset to start. If empty then launch all the services in the stack."]
267267
#[arg(short, long, num_args(1..), required = false)]

crates/tracel-xtask/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ regex = { workspace = true }
2323
serde_json = { workspace = true }
2424
strum = { workspace = true }
2525
tracing-subscriber = { workspace = true }
26-
tracel-xtask-macros = { path = "../tracel-xtask-macros", version = "=2.0.0" }
26+
tracel-xtask-macros = { path = "../tracel-xtask-macros", version = "=2.0.1" }
2727

2828
[dev-dependencies]
2929
rstest = { workspace = true }

0 commit comments

Comments
 (0)