mirror of
https://github.com/ValveSoftware/Proton.git
synced 2024-12-28 15:45:50 +03:00
d957ff7c35
Those are the original repos that were later moved to freedesktop.org. The author recently started updating them as mirrors. Freedesktop.org goes down much more often than GitHub and we fetch everything else from GitHub anyway. It's better to depend on fewer hosting services to have fewer interruptions.
43 lines
1.3 KiB
TOML
43 lines
1.3 KiB
TOML
[package]
|
|
name = "proton-media-converter"
|
|
version = "7.0.0"
|
|
authors = ["Andrew Eikum <aeikum@codeweavers.com>"]
|
|
repository = "https://github.com/ValveSoftware/Proton/"
|
|
license = "MIT/Apache-2.0"
|
|
edition = "2021"
|
|
description = "Proton media converter"
|
|
|
|
[dependencies]
|
|
glib = "0.14"
|
|
gstreamer = { git = "https://github.com/sdroege/gstreamer-rs", tag = "0.17.4" }
|
|
gstreamer-base = { git = "https://github.com/sdroege/gstreamer-rs", tag = "0.17.4" }
|
|
gstreamer-video = { git = "https://github.com/sdroege/gstreamer-rs", tag = "0.17.4" }
|
|
gstreamer-audio = { git = "https://github.com/sdroege/gstreamer-rs", tag = "0.17.4" }
|
|
once_cell = "1.9"
|
|
crc32fast = "1.3"
|
|
array-init = "2.0"
|
|
|
|
[lib]
|
|
name = "protonmediaconverter"
|
|
crate-type = ["cdylib"]
|
|
path = "src/lib.rs"
|
|
|
|
[build-dependencies]
|
|
gst-plugin-version-helper = { git = "https://github.com/sdroege/gst-plugin-rs", tag = "0.7.2" }
|
|
|
|
[profile.release]
|
|
lto = true
|
|
opt-level = 3
|
|
debug = false
|
|
panic = 'unwind'
|
|
|
|
[profile.dev]
|
|
opt-level = 1
|
|
|
|
#if you need local modifications to gstreamer-rs you can point to it here
|
|
#[patch.'https://github.com/sdroege/gstreamer-rs']
|
|
#gstreamer = { path = "../gstreamer-rs/gstreamer" }
|
|
#gstreamer-base = { path = "../gstreamer-rs/gstreamer-base" }
|
|
#gstreamer-video = { path = "../gstreamer-rs/gstreamer-video" }
|
|
#gstreamer-audio = { path = "../gstreamer-rs/gstreamer-audio" }
|