Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Cargo.toml « media-converter - github.com/ValveSoftware/Proton.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 930c4c037590b73a51e5b4077621e4f80761f4f4 (plain)
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
[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" }