From 5b57d6b29019a67706ee354d32b23ebbadb710ba Mon Sep 17 00:00:00 2001 From: Alexandre Pasmantier Date: Sun, 10 Nov 2024 01:09:27 +0100 Subject: [PATCH] chore: update workspace crates configurations --- crates/television_channels/Cargo.toml | 14 ++++++++++++++ crates/television_fuzzy/Cargo.toml | 5 ++++- crates/television_previewers/Cargo.toml | 15 +++++++++++++++ crates/television_utils/Cargo.toml | 16 +++++++++++++++- 4 files changed, 48 insertions(+), 2 deletions(-) diff --git a/crates/television_channels/Cargo.toml b/crates/television_channels/Cargo.toml index 4c7cdd0..b45bc40 100644 --- a/crates/television_channels/Cargo.toml +++ b/crates/television_channels/Cargo.toml @@ -2,6 +2,17 @@ name = "television-channels" version = "0.0.0" edition = "2021" +description = "The revolution will be televised." +license = "MIT" +authors = ["Alexandre Pasmantier "] +repository = "https://github.com/alexpasmantier/television" +keywords = ["search", "fuzzy", "preview", "tui", "terminal"] +categories = [ + "command-line-utilities", + "command-line-interface", + "concurrency", + "development-tools", +] [dependencies] television-fuzzy = { path = "../television_fuzzy", version = "0.0.0" } @@ -17,3 +28,6 @@ directories = "5.0.1" color-eyre = "0.6.3" serde = "1.0.214" strum = { version = "0.26.3", features = ["derive"] } + +[profile.release] +lto = "thin" diff --git a/crates/television_fuzzy/Cargo.toml b/crates/television_fuzzy/Cargo.toml index bee81ae..9d691b5 100644 --- a/crates/television_fuzzy/Cargo.toml +++ b/crates/television_fuzzy/Cargo.toml @@ -16,4 +16,7 @@ categories = [ [dependencies] nucleo = "0.5.0" -parking_lot = "0.12.3" \ No newline at end of file +parking_lot = "0.12.3" + +[profile.release] +lto = "thin" diff --git a/crates/television_previewers/Cargo.toml b/crates/television_previewers/Cargo.toml index 385a0d7..8c0118f 100644 --- a/crates/television_previewers/Cargo.toml +++ b/crates/television_previewers/Cargo.toml @@ -2,6 +2,17 @@ name = "television-previewers" version = "0.0.0" edition = "2021" +description = "The revolution will be televised." +license = "MIT" +authors = ["Alexandre Pasmantier "] +repository = "https://github.com/alexpasmantier/television" +keywords = ["search", "fuzzy", "preview", "tui", "terminal"] +categories = [ + "command-line-utilities", + "command-line-interface", + "concurrency", + "development-tools", +] [dependencies] syntect = "5.2.0" @@ -14,3 +25,7 @@ termtree = "0.5.1" devicons = "0.6.11" color-eyre = "0.6.3" infer = "0.16.0" + +[profile.release] +lto = "thin" + diff --git a/crates/television_utils/Cargo.toml b/crates/television_utils/Cargo.toml index bfaf95a..18392ab 100644 --- a/crates/television_utils/Cargo.toml +++ b/crates/television_utils/Cargo.toml @@ -2,6 +2,17 @@ name = "television-utils" version = "0.0.0" edition = "2021" +description = "The revolution will be televised." +license = "MIT" +authors = ["Alexandre Pasmantier "] +repository = "https://github.com/alexpasmantier/television" +keywords = ["search", "fuzzy", "preview", "tui", "terminal"] +categories = [ + "command-line-utilities", + "command-line-interface", + "concurrency", + "development-tools", +] [dependencies] ignore = "0.4.23" @@ -11,4 +22,7 @@ tracing = "0.1.40" color-eyre = "0.6.3" bat = "0.24.0" directories = "5.0.1" -syntect = "5.2.0" \ No newline at end of file +syntect = "5.2.0" + +[profile.release] +lto = "thin"