mirror of
https://github.com/master-of-zen/Av1an.git
synced 2024-11-24 18:18:06 +00:00
format toml for release
This commit is contained in:
parent
cebbee90d4
commit
8cf8e7a62f
2 changed files with 31 additions and 10 deletions
35
Cargo.toml
35
Cargo.toml
|
@ -1,6 +1,31 @@
|
|||
[workspace]
|
||||
[package]
|
||||
name = "Av1an"
|
||||
version = "0.1.0-alpha"
|
||||
authors = ["Zen <master_of_zen@protonmail.com>"]
|
||||
description = """
|
||||
Cross-platform command-line AV1 / VP9 / HEVC / H264 encoding framework with per scene quality encoding
|
||||
"""
|
||||
repository = "https://github.com/master-of-zen/Av1an"
|
||||
keywords = ["video"]
|
||||
categories = ["command-line-utilities"]
|
||||
license = "GNU General Public License v3.0"
|
||||
edition = "2018"
|
||||
|
||||
members = [
|
||||
"av1an-core",
|
||||
"av1an-cli",
|
||||
]
|
||||
[[bin]]
|
||||
path = "av1an-cli/src/main.rs"
|
||||
name = "av1an"
|
||||
|
||||
[dependencies]
|
||||
anyhow = "1.0.42"
|
||||
clap = "3.0.0-beta.2"
|
||||
serde_json = "1.0.64"
|
||||
serde = { version = "1.0.126", features = ["serde_derive"] }
|
||||
shlex = "1.0.0"
|
||||
ctrlc = "3.1.9"
|
||||
path_abs = "0.5.1"
|
||||
av1an-cli = { path = "av1an-cli" }
|
||||
av1an-core = { path = "av1an-core" }
|
||||
|
||||
|
||||
[workspace]
|
||||
members = ["av1an-core", "av1an-cli"]
|
||||
|
|
|
@ -3,16 +3,12 @@ name = "av1an-cli"
|
|||
version = "0.1.0"
|
||||
edition = "2018"
|
||||
|
||||
[[bin]]
|
||||
name = "av1an"
|
||||
path = "src/main.rs"
|
||||
|
||||
[dependencies]
|
||||
anyhow = "1.0.42"
|
||||
structopt = "0.3.22"
|
||||
serde_json = "1.0.64"
|
||||
serde = { version = "1.0.126", features = ["serde_derive"] }
|
||||
av1an-core = { path="../av1an-core" }
|
||||
av1an-core = { path = "../av1an-core" }
|
||||
shlex = "1.0.0"
|
||||
ctrlc = "3.1.9"
|
||||
path_abs = "0.5.1"
|
||||
|
|
Loading…
Reference in a new issue