-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
Cargo.toml
74 lines (65 loc) · 2.1 KB
/
Cargo.toml
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[package]
name = "t-rec"
version = "0.7.6"
authors = ["Sven Kanoldt <sven@d34dl0ck.me>"]
edition = "2018"
license = "GPL-3.0-only"
description = "Blazingly fast terminal recorder that generates animated gif images for the web written in rust."
homepage = "https://github.com/sassman/t-rec-rs"
readme = "README.md"
keywords = ["recorder", "image", "terminal", "gif", "commandline"]
categories = ["multimedia::images", "command-line-utilities"]
repository = "https://github.com/sassman/t-rec-rs"
links = "X11"
build = "build.rs"
include = ["src/**/*", "LICENSE", "*.md", "build.rs"]
[badges]
github-actions = { repository = "sassman/t-rec-rs", branch = "main", workflow = "Build" }
maintenance = { status = "actively-developed" }
[dependencies]
anyhow = "1.0"
tempfile = "3.3"
rayon = "1.6"
log = "0.4"
env_logger = "0.10"
simplerand = "1.3"
humantime = "2.1"
[dependencies.clap]
version = "4.1"
features = ["cargo"]
[dependencies.image]
version = "0.24"
features = ["bmp"]
[target.'cfg(target_os = "macos")'.dependencies]
objc_id = "0.1.1"
objc-foundation = "0.1.1"
core-graphics = "0.22.2"
core-foundation = "0.9.2"
core-foundation-sys = "0.8.3"
[target.'cfg(any(target_os = "linux", target_os = "netbsd"))'.dependencies]
x11rb = "0.9.0"
[features]
e2e_tests = []
[package.metadata.deb]
section = "x11"
depends = "imagemagick"
extended-description = """## Features
- Screenshotting your terminal with 4 frames per second (every 250ms)
- Generates high quality small sized animated gif images
- **Build-In idle frames detection and optimization** (for super fluid
presentations)
- Applies (can be disabled) border decor effects like drop shadow
- Runs on MacOS and Linux
- Uses native efficient APIs
- Runs without any cloud service and entirely offline
- No issues with terminal sizes larger than 80x24
- No issues with fonts or colors
- No issues with curses based programs
- No issues with escape sequences
- No record and replay - just one simple command to rule them all
- Hidden feature: Record every window you want
- Written in Rust 🦀
"""
[package.metadata.rpm.targets]
buildflags = ["--release"]
t-rec = { path = "/usr/bin/t-rec" }