Skip to content

Commit e50a0e6

Browse files
committed
chore: don't publish tattoy and shadow_terminal
1 parent 4efafec commit e50a0e6

File tree

7 files changed

+9
-3
lines changed

7 files changed

+9
-3
lines changed

.github/workflows/release-plz.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
push:
55
branches:
66
- main
7+
- ensure-cargo-dep-versions-exist
78

89
jobs:
910
release-plz-release:

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ tracing-subscriber = {version = "0.3.18", features = ["env-filter"]}
2828
git = "https://github.com/tombh/wezterm.git"
2929
rev = "ec9005d59f6ab92d9b76d3b9947c8582259cf76e"
3030
features = ["use_serde"]
31+
version = "0.23.1"
3132
# termwiz = { path = "../wezterm/termwiz" }
3233

3334
# Canonical lints for whole crate

crates/shadow_terminal/Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ repository = "TODO"
88
license = "MIT"
99
keywords = ["shell, testing"]
1010
categories = ["shell"]
11+
publish = false
1112
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1213

1314
[dependencies]
@@ -21,6 +22,7 @@ snafu = "0.8.5"
2122
[dependencies.wezterm-term]
2223
git = "https://github.com/tombh/wezterm.git"
2324
rev = "ec9005d59f6ab92d9b76d3b9947c8582259cf76e"
25+
version = "0.1.0"
2426
# wezterm-term = { path = "../../../wezterm/term/" }
2527

2628
[lints]

crates/tattoy-plugins/inverter/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ edition = "2021"
55
publish = false
66

77
[dependencies]
8-
tattoy-protocol = { path = "../../tattoy-protocol"}
8+
tattoy-protocol = { path = "../../tattoy-protocol", version = "0.1.0" }
99
serde_json.workspace = true
1010

1111
[[bin]]

crates/tattoy-plugins/smokey_cursor/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,11 @@ version = "0.1.0"
44
description = "Tattoy plugin that makes the cursor emit interactive smoke particles"
55
license = "MIT"
66
edition = "2021"
7+
publish = false
78

89
[dependencies]
910
color-eyre.workspace = true
10-
glam = { git = "https://github.com/bitshifter/glam-rs", rev = "aacb9c5f", features = [ "fast-math"] }
11+
glam = { git = "https://github.com/bitshifter/glam-rs", rev = "aacb9c5f", features = [ "fast-math"], version = "0.27.0" }
1112
rand.workspace = true
1213
rayon = "1.10.0"
1314
rstar = "0.12.0"

crates/tattoy/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ authors = ["Tom Buckley-Houston <[email protected]>"]
1010
keywords = ["shell"]
1111
categories = ["shell"]
1212
default-run = "tattoy"
13+
publish = false
1314
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1415

1516
[dependencies]

crates/tests/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ publish = false
66

77
[dev-dependencies]
88
palette.workspace = true
9-
shadow-terminal = { path = "../shadow_terminal" }
9+
shadow-terminal = { path = "../shadow_terminal", version = "0.1.0" }
1010
tempfile.workspace = true
1111
termwiz.workspace = true
1212
tokio.workspace = true

0 commit comments

Comments
 (0)