mirror of
https://github.com/alexpasmantier/television.git
synced 2025-06-06 03:25:23 +00:00
chore: bump crate to 0.5.3 and workspace crates to 0.0.7
This commit is contained in:
parent
ebcccb146a
commit
2fc9bd9e80
12
Cargo.lock
generated
12
Cargo.lock
generated
@ -2812,7 +2812,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "television"
|
||||
version = "0.5.2"
|
||||
version = "0.5.3"
|
||||
dependencies = [
|
||||
"better-panic",
|
||||
"clap",
|
||||
@ -2843,7 +2843,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "television-channels"
|
||||
version = "0.0.6"
|
||||
version = "0.0.7"
|
||||
dependencies = [
|
||||
"clap",
|
||||
"color-eyre",
|
||||
@ -2862,7 +2862,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "television-derive"
|
||||
version = "0.0.6"
|
||||
version = "0.0.7"
|
||||
dependencies = [
|
||||
"proc-macro2",
|
||||
"quote",
|
||||
@ -2871,7 +2871,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "television-fuzzy"
|
||||
version = "0.0.6"
|
||||
version = "0.0.7"
|
||||
dependencies = [
|
||||
"nucleo",
|
||||
"parking_lot",
|
||||
@ -2879,7 +2879,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "television-previewers"
|
||||
version = "0.0.6"
|
||||
version = "0.0.7"
|
||||
dependencies = [
|
||||
"color-eyre",
|
||||
"devicons",
|
||||
@ -2894,7 +2894,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "television-utils"
|
||||
version = "0.0.6"
|
||||
version = "0.0.7"
|
||||
dependencies = [
|
||||
"bat",
|
||||
"color-eyre",
|
||||
|
12
Cargo.toml
12
Cargo.toml
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "television"
|
||||
version = "0.5.2"
|
||||
version = "0.5.3"
|
||||
edition = "2021"
|
||||
description = "The revolution will be televised."
|
||||
license = "MIT"
|
||||
@ -54,11 +54,11 @@ name = "tv"
|
||||
|
||||
[dependencies]
|
||||
# workspace dependencies
|
||||
television-fuzzy = { path = "crates/television-fuzzy", version = "0.0.6" }
|
||||
television-derive = { path = "crates/television-derive", version = "0.0.6" }
|
||||
television-channels = { path = "crates/television-channels", version = "0.0.6" }
|
||||
television-previewers = { path = "crates/television-previewers", version = "0.0.6" }
|
||||
television-utils = { path = "crates/television-utils", version = "0.0.6" }
|
||||
television-fuzzy = { path = "crates/television-fuzzy", version = "0.0.7" }
|
||||
television-derive = { path = "crates/television-derive", version = "0.0.7" }
|
||||
television-channels = { path = "crates/television-channels", version = "0.0.7" }
|
||||
television-previewers = { path = "crates/television-previewers", version = "0.0.7" }
|
||||
television-utils = { path = "crates/television-utils", version = "0.0.7" }
|
||||
|
||||
# external dependencies
|
||||
better-panic = "0.3.0"
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "television-channels"
|
||||
version = "0.0.6"
|
||||
version = "0.0.7"
|
||||
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.6" }
|
||||
television-utils = { path = "../television-utils", version = "0.0.6" }
|
||||
television-derive = { path = "../television-derive", version = "0.0.6" }
|
||||
television-fuzzy = { path = "../television-fuzzy", version = "0.0.7" }
|
||||
television-utils = { path = "../television-utils", version = "0.0.7" }
|
||||
television-derive = { path = "../television-derive", version = "0.0.7" }
|
||||
devicons = "0.6.11"
|
||||
tracing = "0.1.40"
|
||||
eyre = "0.6.12"
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "television-derive"
|
||||
version = "0.0.6"
|
||||
version = "0.0.7"
|
||||
description.workspace = true
|
||||
authors.workspace = true
|
||||
repository.workspace = true
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "television-fuzzy"
|
||||
version = "0.0.6"
|
||||
version = "0.0.7"
|
||||
description.workspace = true
|
||||
authors.workspace = true
|
||||
repository.workspace = true
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "television-previewers"
|
||||
version = "0.0.6"
|
||||
version = "0.0.7"
|
||||
description.workspace = true
|
||||
authors.workspace = true
|
||||
repository.workspace = true
|
||||
@ -14,8 +14,8 @@ rust-version.workspace = true
|
||||
|
||||
[dependencies]
|
||||
syntect = "5.2.0"
|
||||
television-channels = { path = "../television-channels", version = "0.0.6" }
|
||||
television-utils = { path = "../television-utils", version = "0.0.6" }
|
||||
television-channels = { path = "../television-channels", version = "0.0.7" }
|
||||
television-utils = { path = "../television-utils", version = "0.0.7" }
|
||||
tracing = "0.1.40"
|
||||
parking_lot = "0.12.3"
|
||||
tokio = "1.41.1"
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "television-utils"
|
||||
version = "0.0.6"
|
||||
version = "0.0.7"
|
||||
description.workspace = true
|
||||
authors.workspace = true
|
||||
repository.workspace = true
|
||||
|
Loading…
x
Reference in New Issue
Block a user