mirror of
https://github.com/alexpasmantier/television.git
synced 2025-06-03 01:50:12 +00:00
42 lines
1.0 KiB
TOML
42 lines
1.0 KiB
TOML
[package]
|
|
name = "television-previewers"
|
|
version = "0.0.20"
|
|
description.workspace = true
|
|
authors.workspace = true
|
|
repository.workspace = true
|
|
homepage.workspace = true
|
|
keywords.workspace = true
|
|
categories.workspace = true
|
|
readme.workspace = true
|
|
license.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[dependencies]
|
|
television-channels = { path = "../television-channels", version = "0.0.20" }
|
|
television-utils = { path = "../television-utils", version = "0.0.20" }
|
|
|
|
syntect = { workspace = true }
|
|
tracing = { workspace = true }
|
|
tokio = { workspace = true }
|
|
color-eyre = { workspace = true }
|
|
lazy_static = { workspace = true }
|
|
rustc-hash = { workspace = true }
|
|
|
|
parking_lot = "0.12.3"
|
|
devicons = "0.6.11"
|
|
regex = "1.11.1"
|
|
nom = "7.1"
|
|
tui = { version = "0.29", default-features = false, package = "ratatui" }
|
|
thiserror = "1.0"
|
|
simdutf8 = { version = "0.1", optional = true }
|
|
smallvec = { version = "1.10.0", features = ["const_generics"] }
|
|
|
|
[features]
|
|
simd = ["dep:simdutf8"]
|
|
zero-copy = []
|
|
default = ["zero-copy", "simd"]
|
|
|
|
[lints]
|
|
workspace = true
|