diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-08-21 10:49:23 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-08-21 11:28:43 +0200 |
commit | 1debeb77f7986de1b659dcfdc442de6415e1d9f5 (patch) | |
tree | 4df3e7c3f6a2d1ec116e4088c5ace7f143a8b05f /Cargo.toml | |
download | yt-1debeb77f7986de1b659dcfdc442de6415e1d9f5.tar.gz yt-1debeb77f7986de1b659dcfdc442de6415e1d9f5.zip |
chore: Initial Commit
This repository was migrated out of my nixos-config.
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..1c3877e --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,50 @@ +# yt - A fully featured command line YouTube client +# +# Copyright (C) 2024 Benedikt Peetz <benedikt.peetz@b-peetz.de> +# SPDX-License-Identifier: GPL-3.0-or-later +# +# This file is part of Yt. +# +# You should have received a copy of the License along with this program. +# If not, see <https://www.gnu.org/licenses/gpl-3.0.txt>. + +[package] +name = "yt" +version = "0.1.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +anyhow = "1.0.86" +blake3 = "1.5.4" +chrono = { version = "0.4.38", features = ["now"] } +chrono-humanize = "0.2.3" +clap = { version = "4.5.16", features = ["derive"] } +futures = "0.3.30" +log = "0.4.22" +regex = "1.10.6" +serde = { version = "1.0.208", features = ["derive"] } +serde_json = "1.0.125" +sqlx = { version = "0.7.4", features = ["runtime-tokio", "sqlite"] } +stderrlog = "0.6.0" +tempfile = "3.12.0" +tokio = { version = "1.39.3", features = ["rt-multi-thread", "macros", "process", "time", "io-std"] } +url = { version = "2.5.2", features = ["serde"] } +xdg = "2.5.2" +yt_dlp = { path = "./yt_dlp/" } +libmpv2 = { path = "./libmpv2" } +trinitry = { version = "0.2.2" } + +[[bin]] +name = "yt" + +[profile.profiling] +inherits = "release" +debug = true + +[profile.release] +lto = true +codegen-units = 1 +panic = "abort" +split-debuginfo = "off" |