forked from sassman/t-rec-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
43 lines (38 loc) · 1.21 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
[package]
name = "t-rec"
version = "0.4.2"
authors = ["Sven Assmann <sven.assmann.it@gmail.com>"]
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", "README.md", "CHANGELOG.md", "build.rs"]
[badges]
github-actions = { repository = "sassman/t-rec-rs", branch = "main", workflow = "Build" }
maintenance = { status = "actively-developed" }
[dependencies]
clap = "2.33.3"
image = { version = "0.23.12", features = ["tga"] }
anyhow = "1.0.35"
tempfile = "3.1.0"
gif = "0.11"
rayon = "1.5.0"
log = "0.4.11"
env_logger = "0.8.2"
#image-convert = "0.10"
[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.1"
core-foundation-sys = "0.8.2"
[target.'cfg(target_os = "linux")'.dependencies]
x11rb = "0.7.0"
[features]
e2e_tests = []