mirror of
https://github.com/alexpasmantier/television.git
synced 2025-06-07 12:05:34 +00:00
fix(windows): bump television_utils to v0.0.1 (#4)
* fix: bump television_utils * bump television to 0.4.19
This commit is contained in:
parent
e475523c79
commit
b3760d2259
10
Cargo.lock
generated
10
Cargo.lock
generated
@ -3104,7 +3104,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "television"
|
name = "television"
|
||||||
version = "0.4.18"
|
version = "0.4.19"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"bat",
|
"bat",
|
||||||
@ -3153,7 +3153,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "television-channels"
|
name = "television-channels"
|
||||||
version = "0.0.0"
|
version = "0.0.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"clap",
|
"clap",
|
||||||
"color-eyre",
|
"color-eyre",
|
||||||
@ -3181,7 +3181,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "television-fuzzy"
|
name = "television-fuzzy"
|
||||||
version = "0.0.0"
|
version = "0.0.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"nucleo",
|
"nucleo",
|
||||||
"parking_lot",
|
"parking_lot",
|
||||||
@ -3189,7 +3189,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "television-previewers"
|
name = "television-previewers"
|
||||||
version = "0.0.0"
|
version = "0.0.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"color-eyre",
|
"color-eyre",
|
||||||
"devicons",
|
"devicons",
|
||||||
@ -3205,7 +3205,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "television-utils"
|
name = "television-utils"
|
||||||
version = "0.0.0"
|
version = "0.0.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bat",
|
"bat",
|
||||||
"color-eyre",
|
"color-eyre",
|
||||||
|
10
Cargo.toml
10
Cargo.toml
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "television"
|
name = "television"
|
||||||
version = "0.4.18"
|
version = "0.4.19"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "The revolution will be televised."
|
description = "The revolution will be televised."
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
@ -25,11 +25,11 @@ name = "tv"
|
|||||||
members = ["crates/television_channels","crates/television_derive", "crates/television_fuzzy", "crates/television_previewers", "crates/television_utils"]
|
members = ["crates/television_channels","crates/television_derive", "crates/television_fuzzy", "crates/television_previewers", "crates/television_utils"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
television-fuzzy = { version = "0.0.0", path = "crates/television_fuzzy" }
|
television-fuzzy = { version = "0.0.1", path = "crates/television_fuzzy" }
|
||||||
television-derive = { version = "0.0.0", path = "crates/television_derive" }
|
television-derive = { version = "0.0.0", path = "crates/television_derive" }
|
||||||
television-channels = { version = "0.0.0", path = "crates/television_channels" }
|
television-channels = { version = "0.0.1", path = "crates/television_channels" }
|
||||||
television-previewers = { version = "0.0.0", path = "crates/television_previewers" }
|
television-previewers = { version = "0.0.1", path = "crates/television_previewers" }
|
||||||
television-utils = { version = "0.0.0", path = "crates/television_utils" }
|
television-utils = { version = "0.0.1", path = "crates/television_utils" }
|
||||||
better-panic = "0.3.0"
|
better-panic = "0.3.0"
|
||||||
clap = { version = "4.4.5", features = [
|
clap = { version = "4.4.5", features = [
|
||||||
"derive",
|
"derive",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "television-channels"
|
name = "television-channels"
|
||||||
version = "0.0.0"
|
version = "0.0.1"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "The revolution will be televised."
|
description = "The revolution will be televised."
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
@ -15,8 +15,8 @@ categories = [
|
|||||||
]
|
]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
television-fuzzy = { path = "../television_fuzzy", version = "0.0.0" }
|
television-fuzzy = { path = "../television_fuzzy", version = "0.0.1" }
|
||||||
television-utils = { path = "../television_utils", version = "0.0.0" }
|
television-utils = { path = "../television_utils", version = "0.0.1" }
|
||||||
television-derive = { path = "../television_derive", version = "0.0.0" }
|
television-derive = { path = "../television_derive", version = "0.0.0" }
|
||||||
devicons = "0.6.11"
|
devicons = "0.6.11"
|
||||||
tracing = "0.1.40"
|
tracing = "0.1.40"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "television-fuzzy"
|
name = "television-fuzzy"
|
||||||
version = "0.0.0"
|
version = "0.0.1"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "The revolution will be televised."
|
description = "The revolution will be televised."
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "television-previewers"
|
name = "television-previewers"
|
||||||
version = "0.0.0"
|
version = "0.0.1"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "The revolution will be televised."
|
description = "The revolution will be televised."
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
@ -16,8 +16,8 @@ categories = [
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
syntect = "5.2.0"
|
syntect = "5.2.0"
|
||||||
television-channels = { version = "0.0.0", path = "../television_channels" }
|
television-channels = { version = "0.0.1", path = "../television_channels" }
|
||||||
television-utils = { version = "0.0.0", path = "../television_utils" }
|
television-utils = { version = "0.0.1", path = "../television_utils" }
|
||||||
tracing = "0.1.40"
|
tracing = "0.1.40"
|
||||||
parking_lot = "0.12.3"
|
parking_lot = "0.12.3"
|
||||||
tokio = "1.41.1"
|
tokio = "1.41.1"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "television-utils"
|
name = "television-utils"
|
||||||
version = "0.0.0"
|
version = "0.0.1"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "The revolution will be televised."
|
description = "The revolution will be televised."
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user