mirror of
https://github.com/alexpasmantier/television.git
synced 2025-06-06 03:25:23 +00:00
parent
ad3e52d340
commit
795db19fff
12
Cargo.lock
generated
12
Cargo.lock
generated
@ -2834,7 +2834,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "television"
|
name = "television"
|
||||||
version = "0.6.0"
|
version = "0.6.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"ansi-to-tui",
|
"ansi-to-tui",
|
||||||
"better-panic",
|
"better-panic",
|
||||||
@ -2865,7 +2865,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "television-channels"
|
name = "television-channels"
|
||||||
version = "0.0.8"
|
version = "0.0.9"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"clap",
|
"clap",
|
||||||
"color-eyre",
|
"color-eyre",
|
||||||
@ -2886,7 +2886,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "television-derive"
|
name = "television-derive"
|
||||||
version = "0.0.8"
|
version = "0.0.9"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
"quote",
|
"quote",
|
||||||
@ -2895,7 +2895,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "television-fuzzy"
|
name = "television-fuzzy"
|
||||||
version = "0.0.8"
|
version = "0.0.9"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"nucleo",
|
"nucleo",
|
||||||
"parking_lot",
|
"parking_lot",
|
||||||
@ -2903,7 +2903,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "television-previewers"
|
name = "television-previewers"
|
||||||
version = "0.0.8"
|
version = "0.0.9"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"color-eyre",
|
"color-eyre",
|
||||||
"devicons",
|
"devicons",
|
||||||
@ -2919,7 +2919,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "television-utils"
|
name = "television-utils"
|
||||||
version = "0.0.8"
|
version = "0.0.9"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bat",
|
"bat",
|
||||||
"color-eyre",
|
"color-eyre",
|
||||||
|
12
Cargo.toml
12
Cargo.toml
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "television"
|
name = "television"
|
||||||
version = "0.6.0"
|
version = "0.6.1"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "The revolution will be televised."
|
description = "The revolution will be televised."
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
@ -54,11 +54,11 @@ name = "tv"
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# workspace dependencies
|
# workspace dependencies
|
||||||
television-fuzzy = { path = "crates/television-fuzzy", version = "0.0.8" }
|
television-fuzzy = { path = "crates/television-fuzzy", version = "0.0.9" }
|
||||||
television-derive = { path = "crates/television-derive", version = "0.0.8" }
|
television-derive = { path = "crates/television-derive", version = "0.0.9" }
|
||||||
television-channels = { path = "crates/television-channels", version = "0.0.8" }
|
television-channels = { path = "crates/television-channels", version = "0.0.9" }
|
||||||
television-previewers = { path = "crates/television-previewers", version = "0.0.8" }
|
television-previewers = { path = "crates/television-previewers", version = "0.0.9" }
|
||||||
television-utils = { path = "crates/television-utils", version = "0.0.8" }
|
television-utils = { path = "crates/television-utils", version = "0.0.9" }
|
||||||
|
|
||||||
# external dependencies
|
# external dependencies
|
||||||
better-panic = "0.3.0"
|
better-panic = "0.3.0"
|
||||||
|
@ -46,8 +46,8 @@ It is inspired by the neovim [telescope](https://github.com/nvim-telescope/teles
|
|||||||
</summary>
|
</summary>
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
curl -LO https://github.com/alexpasmantier/television/releases/download/0.6.0/television_0.6.0-1_amd64.deb
|
curl -LO https://github.com/alexpasmantier/television/releases/download/0.6.1/television_0.6.1-1_amd64.deb
|
||||||
sudo dpkg -i television_0.6.0-1_amd64.deb
|
sudo dpkg -i television_0.6.1-1_amd64.deb
|
||||||
```
|
```
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "television-channels"
|
name = "television-channels"
|
||||||
version = "0.0.8"
|
version = "0.0.9"
|
||||||
description.workspace = true
|
description.workspace = true
|
||||||
authors.workspace = true
|
authors.workspace = true
|
||||||
repository.workspace = true
|
repository.workspace = true
|
||||||
@ -13,9 +13,9 @@ edition.workspace = true
|
|||||||
rust-version.workspace = true
|
rust-version.workspace = true
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
television-fuzzy = { path = "../television-fuzzy", version = "0.0.8" }
|
television-fuzzy = { path = "../television-fuzzy", version = "0.0.9" }
|
||||||
television-utils = { path = "../television-utils", version = "0.0.8" }
|
television-utils = { path = "../television-utils", version = "0.0.9" }
|
||||||
television-derive = { path = "../television-derive", version = "0.0.8" }
|
television-derive = { path = "../television-derive", version = "0.0.9" }
|
||||||
devicons = "0.6.11"
|
devicons = "0.6.11"
|
||||||
tracing = "0.1.40"
|
tracing = "0.1.40"
|
||||||
eyre = "0.6.12"
|
eyre = "0.6.12"
|
||||||
|
@ -142,7 +142,6 @@ pub enum TelevisionChannel {
|
|||||||
/// A custom channel.
|
/// A custom channel.
|
||||||
///
|
///
|
||||||
/// This channel allows to search through custom data.
|
/// This channel allows to search through custom data.
|
||||||
#[exclude_from_unit]
|
|
||||||
#[exclude_from_cli]
|
#[exclude_from_cli]
|
||||||
Cable(cable::Channel),
|
Cable(cable::Channel),
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "television-derive"
|
name = "television-derive"
|
||||||
version = "0.0.8"
|
version = "0.0.9"
|
||||||
description.workspace = true
|
description.workspace = true
|
||||||
authors.workspace = true
|
authors.workspace = true
|
||||||
repository.workspace = true
|
repository.workspace = true
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "television-fuzzy"
|
name = "television-fuzzy"
|
||||||
version = "0.0.8"
|
version = "0.0.9"
|
||||||
description.workspace = true
|
description.workspace = true
|
||||||
authors.workspace = true
|
authors.workspace = true
|
||||||
repository.workspace = true
|
repository.workspace = true
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "television-previewers"
|
name = "television-previewers"
|
||||||
version = "0.0.8"
|
version = "0.0.9"
|
||||||
description.workspace = true
|
description.workspace = true
|
||||||
authors.workspace = true
|
authors.workspace = true
|
||||||
repository.workspace = true
|
repository.workspace = true
|
||||||
@ -14,8 +14,8 @@ rust-version.workspace = true
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
syntect = "5.2.0"
|
syntect = "5.2.0"
|
||||||
television-channels = { path = "../television-channels", version = "0.0.8" }
|
television-channels = { path = "../television-channels", version = "0.0.9" }
|
||||||
television-utils = { path = "../television-utils", version = "0.0.8" }
|
television-utils = { path = "../television-utils", version = "0.0.9" }
|
||||||
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.8"
|
version = "0.0.9"
|
||||||
description.workspace = true
|
description.workspace = true
|
||||||
authors.workspace = true
|
authors.workspace = true
|
||||||
repository.workspace = true
|
repository.workspace = true
|
||||||
|
Loading…
x
Reference in New Issue
Block a user