-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathCargo.toml
50 lines (35 loc) · 1.18 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
[package]
name = "qsv2flv"
version = "0.1.2"
authors = ["ZhangZhilin <corex_public@outlook.com>"]
edition = "2018"
description = "A tool developed in Rust to convert QSV to FLV"
readme = "README.md"
homepage = "https://github.com/zhangzhilinx/qsv2flv"
repository = "https://github.com/zhangzhilinx/qsv2flv"
license-file = "LICENSE"
keywords = ["cli", "qsv", "flv", "convert", "decoder"]
categories = ["command-line-utilities", "multimedia::encoding"]
exclude = [".idea", ".github"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
chrono = "~0.4"
clap = "~2.27.0"
#[target.aarch64-unknown-linux-musl]
#linker = "aarch64-linux-musl-gcc"
#ar = "aarch64-linux-musl-ar"
#[target.arm-unknown-linux-musleabi]
#linker = "arm-linux-musleabi-gcc"
#ar = "arm-linux-musleabi-ar"
#[target.i686-unknown-linux-musl]
#linker = "i686-linux-musl-gcc"
#ar = "i686-linux-musl-ar"
#[target.x86_64-unknown-linux-musl]
#linker = "x86_64-linux-musl-gcc"
#ar = "x86_64-linux-musl-ar"
#[target.aarch64-pc-windows-msvc]
#linker = "lld-link.exe"
#[target.i686-pc-windows-msvc]
#linker = "lld-link.exe"
#[target.x86_64-pc-windows-msvc]
#linker = "lld-link.exe"