blob: 10ab7ed2d05ce153389cf09effeb0be24e08a76f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# yt - A fully featured command line YouTube client
#
# Copyright (C) 2025 softprops <d.tangren@gmail.com>
# SPDX-License-Identifier: MIT
#
# 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 = "termsize"
authors = [
"softprops <d.tangren@gmail.com>",
"Benedikt Peetz <benedikt.peetz@b-peetz.de>",
]
description = "Retrieves terminal size"
repository = "https://github.com/softprops/termsize"
homepage = "https://github.com/softprops/termsize"
documentation = "http://softprops.github.io/termsize"
keywords = ["tty", "terminal", "term", "size", "dimensions"]
license = "MIT"
readme = "README.md"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
publish = false
[target.'cfg(unix)'.dependencies]
libc = "0.2"
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3", features = ["handleapi", "fileapi", "wincon"] }
[lints]
workspace = true
|