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

Cargo.toml - gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d07f826091bcb221dec607d78ed65b53a7f860e5 (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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[workspace]

members = [
    "tutorial",
    "version-helper",
    "audio/audiofx",
    "audio/claxon",
    "audio/csound",
    "audio/lewton",
    "audio/spotify",
    "generic/fmp4",
    "generic/file",
    "generic/sodium",
    "generic/threadshare",
    "net/hlssink3",
    "net/onvif",
    "net/reqwest",
    "net/rusoto",
    "utils/fallbackswitch",
    "utils/togglerecord",
    "utils/tracers",
    "utils/uriplaylistbin",
    "video/cdg",
    "video/closedcaption",
    "video/videofx",
    "video/dav1d",
    "video/ffv1",
    "video/flavors",
    "video/gif",
    "video/gtk4",
    "video/rav1e",
    "video/rspng",
    "video/hsv",
    "video/webp",
    "text/ahead",
    "text/wrap",
    "text/json",
    "text/regex",
]

# Only plugins without external dependencies
default-members = [
    "tutorial",
    "version-helper",
    "audio/audiofx",
    "audio/claxon",
    "audio/lewton",
    "generic/file",
    "generic/fmp4",
    "generic/threadshare",
    "net/onvif",
    "net/reqwest",
    "net/rusoto",
    "utils/fallbackswitch",
    "utils/togglerecord",
    "utils/tracers",
    "utils/uriplaylistbin",
    "video/cdg",
    "video/ffv1",
    "video/flavors",
    "video/gif",
    "video/rav1e",
    "video/rspng",
    "video/hsv",
    "text/ahead",
    "text/wrap",
    "text/json",
    "text/regex",
]

[profile.release]
lto = true
opt-level = 3
debug = true
panic = 'unwind'

[profile.dev]
opt-level = 1