mirror of
https://github.com/alexpasmantier/television.git
synced 2025-06-01 09:00:16 +00:00
chore: bump workspace to 0.9.3 (#287)
This commit is contained in:
parent
6c3bede3ca
commit
a43ed22666
3
.gitignore
vendored
3
.gitignore
vendored
@ -19,4 +19,5 @@ Cargo.lock
|
||||
.data/*.log
|
||||
|
||||
# Direnv (Nix Shell)
|
||||
.direnv/
|
||||
.direnv/
|
||||
.DS_Store
|
||||
|
14
Cargo.lock
generated
14
Cargo.lock
generated
@ -2998,7 +2998,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "television"
|
||||
version = "0.9.2"
|
||||
version = "0.9.3"
|
||||
dependencies = [
|
||||
"better-panic",
|
||||
"clap",
|
||||
@ -3032,7 +3032,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "television-channels"
|
||||
version = "0.0.21"
|
||||
version = "0.0.22"
|
||||
dependencies = [
|
||||
"clap",
|
||||
"color-eyre",
|
||||
@ -3054,7 +3054,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "television-derive"
|
||||
version = "0.0.21"
|
||||
version = "0.0.22"
|
||||
dependencies = [
|
||||
"proc-macro2",
|
||||
"quote",
|
||||
@ -3063,7 +3063,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "television-fuzzy"
|
||||
version = "0.0.21"
|
||||
version = "0.0.22"
|
||||
dependencies = [
|
||||
"nucleo",
|
||||
"parking_lot",
|
||||
@ -3071,7 +3071,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "television-previewers"
|
||||
version = "0.0.21"
|
||||
version = "0.0.22"
|
||||
dependencies = [
|
||||
"color-eyre",
|
||||
"devicons",
|
||||
@ -3093,7 +3093,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "television-screen"
|
||||
version = "0.0.21"
|
||||
version = "0.0.22"
|
||||
dependencies = [
|
||||
"color-eyre",
|
||||
"devicons",
|
||||
@ -3109,7 +3109,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "television-utils"
|
||||
version = "0.0.21"
|
||||
version = "0.0.22"
|
||||
dependencies = [
|
||||
"bat",
|
||||
"color-eyre",
|
||||
|
18
Cargo.toml
18
Cargo.toml
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "television"
|
||||
version = "0.9.2"
|
||||
version = "0.9.3"
|
||||
edition = "2021"
|
||||
description = "The revolution will be televised."
|
||||
license = "MIT"
|
||||
@ -63,7 +63,9 @@ tokio = { version = "1.41.1", features = ["full"] }
|
||||
tracing = "0.1.40"
|
||||
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "serde"] }
|
||||
rustc-hash = "2.1.0"
|
||||
syntect = {version = "5.2.0", default-features = false, features = ["default-fancy"]}
|
||||
syntect = { version = "5.2.0", default-features = false, features = [
|
||||
"default-fancy",
|
||||
] }
|
||||
unicode-width = "0.2.0"
|
||||
clap = { version = "4.5.20", features = ["derive", "cargo", "string"] }
|
||||
serde = { version = "1.0.214", features = ["derive"] }
|
||||
@ -73,12 +75,12 @@ ratatui = { version = "0.29.0", features = ["serde", "macros"] }
|
||||
|
||||
[dependencies]
|
||||
# local dependencies
|
||||
television-fuzzy = { path = "crates/television-fuzzy", version = "0.0.21" }
|
||||
television-derive = { path = "crates/television-derive", version = "0.0.21" }
|
||||
television-screen = { path = "crates/television-screen", version = "0.0.21" }
|
||||
television-channels = { path = "crates/television-channels", version = "0.0.21" }
|
||||
television-previewers = { path = "crates/television-previewers", version = "0.0.21" }
|
||||
television-utils = { path = "crates/television-utils", version = "0.0.21" }
|
||||
television-fuzzy = { path = "crates/television-fuzzy", version = "0.0.22" }
|
||||
television-derive = { path = "crates/television-derive", version = "0.0.22" }
|
||||
television-screen = { path = "crates/television-screen", version = "0.0.22" }
|
||||
television-channels = { path = "crates/television-channels", version = "0.0.22" }
|
||||
television-previewers = { path = "crates/television-previewers", version = "0.0.22" }
|
||||
television-utils = { path = "crates/television-utils", version = "0.0.22" }
|
||||
|
||||
# workspace dependencies
|
||||
directories = { workspace = true }
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "television-channels"
|
||||
version = "0.0.21"
|
||||
version = "0.0.22"
|
||||
description.workspace = true
|
||||
authors.workspace = true
|
||||
repository.workspace = true
|
||||
@ -13,9 +13,9 @@ edition.workspace = true
|
||||
rust-version.workspace = true
|
||||
|
||||
[dependencies]
|
||||
television-fuzzy = { path = "../television-fuzzy", version = "0.0.21" }
|
||||
television-utils = { path = "../television-utils", version = "0.0.21" }
|
||||
television-derive = { path = "../television-derive", version = "0.0.21" }
|
||||
television-fuzzy = { path = "../television-fuzzy", version = "0.0.22" }
|
||||
television-utils = { path = "../television-utils", version = "0.0.22" }
|
||||
television-derive = { path = "../television-derive", version = "0.0.22" }
|
||||
|
||||
tracing = { workspace = true }
|
||||
tokio = { workspace = true, features = ["rt"] }
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "television-derive"
|
||||
version = "0.0.21"
|
||||
version = "0.0.22"
|
||||
description.workspace = true
|
||||
authors.workspace = true
|
||||
repository.workspace = true
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "television-fuzzy"
|
||||
version = "0.0.21"
|
||||
version = "0.0.22"
|
||||
description.workspace = true
|
||||
authors.workspace = true
|
||||
repository.workspace = true
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "television-previewers"
|
||||
version = "0.0.21"
|
||||
version = "0.0.22"
|
||||
description.workspace = true
|
||||
authors.workspace = true
|
||||
repository.workspace = true
|
||||
@ -13,8 +13,8 @@ edition.workspace = true
|
||||
rust-version.workspace = true
|
||||
|
||||
[dependencies]
|
||||
television-channels = { path = "../television-channels", version = "0.0.21" }
|
||||
television-utils = { path = "../television-utils", version = "0.0.21" }
|
||||
television-channels = { path = "../television-channels", version = "0.0.22" }
|
||||
television-utils = { path = "../television-utils", version = "0.0.22" }
|
||||
|
||||
syntect = { workspace = true }
|
||||
devicons = { workspace = true }
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "television-screen"
|
||||
version = "0.0.21"
|
||||
version = "0.0.22"
|
||||
description.workspace = true
|
||||
authors.workspace = true
|
||||
repository.workspace = true
|
||||
@ -13,9 +13,9 @@ edition.workspace = true
|
||||
rust-version.workspace = true
|
||||
|
||||
[dependencies]
|
||||
television-utils = { path = "../television-utils", version = "0.0.21" }
|
||||
television-channels = { path = "../television-channels", version = "0.0.21" }
|
||||
television-previewers = { path = "../television-previewers", version = "0.0.21" }
|
||||
television-utils = { path = "../television-utils", version = "0.0.22" }
|
||||
television-channels = { path = "../television-channels", version = "0.0.22" }
|
||||
television-previewers = { path = "../television-previewers", version = "0.0.22" }
|
||||
|
||||
ratatui = { workspace = true }
|
||||
serde = { workspace = true }
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "television-utils"
|
||||
version = "0.0.21"
|
||||
version = "0.0.22"
|
||||
description.workspace = true
|
||||
authors.workspace = true
|
||||
repository.workspace = true
|
||||
|
Loading…
x
Reference in New Issue
Block a user