Skip to content

Commit 1ebc3d1

Browse files
committed
chore(release): prep publish graph
1 parent 6983362 commit 1ebc3d1

6 files changed

Lines changed: 15 additions & 20 deletions

File tree

crates/cli/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ anstyle.workspace = true
2323
clap.workspace = true
2424
deno_task_shell.workspace = true
2525
miette.workspace = true
26-
only-diagnostic = { path = "../diagnostic" }
27-
only-engine = { path = "../engine" }
28-
only-semantic = { path = "../semantic" }
26+
only-diagnostic = { version = "0.0.3", path = "../diagnostic" }
27+
only-engine = { version = "0.0.3", path = "../engine" }
28+
only-semantic = { version = "0.0.3", path = "../semantic" }
2929
tokio.workspace = true

crates/diagnostic/Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@ edition.workspace = true
55
license.workspace = true
66
repository.workspace = true
77
documentation.workspace = true
8-
readme.workspace = true
9-
publish = false
8+
description = "Shared diagnostic types for the only task language."
109

1110
[dependencies]
1211
text-size.workspace = true

crates/engine/Cargo.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,10 @@ edition.workspace = true
55
license.workspace = true
66
repository.workspace = true
77
documentation.workspace = true
8-
readme.workspace = true
9-
publish = false
8+
description = "Execution planning and runtime engine for only tasks."
109

1110
[dependencies]
1211
anstyle.workspace = true
1312
deno_task_shell.workspace = true
14-
only-semantic = { path = "../semantic" }
13+
only-semantic = { version = "0.0.3", path = "../semantic" }
1514
tokio.workspace = true

crates/lsp/Cargo.toml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,12 @@ edition.workspace = true
55
license.workspace = true
66
repository.workspace = true
77
documentation.workspace = true
8-
readme.workspace = true
9-
publish = false
8+
description = "Language Server Protocol support for the only task language."
109

1110
[dependencies]
12-
only-diagnostic = { path = "../diagnostic" }
13-
only-semantic = { path = "../semantic" }
14-
only-syntax = { path = "../syntax" }
11+
only-diagnostic = { version = "0.0.3", path = "../diagnostic" }
12+
only-semantic = { version = "0.0.3", path = "../semantic" }
13+
only-syntax = { version = "0.0.3", path = "../syntax" }
1514
text-size.workspace = true
1615
tokio = { workspace = true, features = ["io-std", "macros", "rt-multi-thread"] }
1716
tower-lsp = "0.20"

crates/semantic/Cargo.toml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,10 @@ edition.workspace = true
55
license.workspace = true
66
repository.workspace = true
77
documentation.workspace = true
8-
readme.workspace = true
9-
publish = false
8+
description = "Semantic analysis for the only task language."
109

1110
[dependencies]
12-
only-diagnostic = { path = "../diagnostic" }
13-
only-syntax = { path = "../syntax" }
11+
only-diagnostic = { version = "0.0.3", path = "../diagnostic" }
12+
only-syntax = { version = "0.0.3", path = "../syntax" }
1413
smol_str.workspace = true
1514
text-size.workspace = true

crates/syntax/Cargo.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,11 @@ edition.workspace = true
55
license.workspace = true
66
repository.workspace = true
77
documentation.workspace = true
8-
readme.workspace = true
9-
publish = false
8+
description = "Syntax parsing and CST construction for the only task language."
109

1110
[dependencies]
1211
logos.workspace = true
13-
only-diagnostic = { path = "../diagnostic" }
12+
only-diagnostic = { version = "0.0.3", path = "../diagnostic" }
1413
rowan.workspace = true
1514
smol_str.workspace = true
1615
text-size.workspace = true

0 commit comments

Comments
 (0)