gst-plugins-rs/Cargo.toml
Arun Raghavan 205b6040fb Reorganise plugins into directories by function
This should start making navigating the tree a little easier to start
with, and we can then move to allowing building specific groups of
plugins as well.

The plugins are moved into the following hierarchy:

  audio
    / gst-plugin-audiofx
    / gst-plugin-claxon
    / gst-plugin-csound
    / gst-plugin-lewton
  generic
    / gst-plugin-file
    / gst-plugin-sodium
    / gst-plugin-threadshare
  net
    / gst-plugin-reqwest
    / gst-plugin-rusoto
  utils
    / gst-plugin-fallbackswitch
    / gst-plugin-togglerecord
  video
    / gst-plugin-cdg
    / gst-plugin-closedcaption
    / gst-plugin-dav1d
    / gst-plugin-flv
    / gst-plugin-gif
    / gst-plugin-rav1e

  gst-plugin-tutorial
  gst-plugin-version-helper
2020-04-05 19:10:46 +00:00

33 lines
734 B
TOML

[workspace]
members = [
"gst-plugin-tutorial",
"gst-plugin-version-helper",
"audio/gst-plugin-audiofx",
"audio/gst-plugin-claxon",
"audio/gst-plugin-csound",
"audio/gst-plugin-lewton",
"generic/gst-plugin-file",
"generic/gst-plugin-sodium",
"generic/gst-plugin-threadshare",
"net/gst-plugin-reqwest",
"net/gst-plugin-rusoto",
"utils/gst-plugin-fallbackswitch",
"utils/gst-plugin-togglerecord",
"video/gst-plugin-cdg",
"video/gst-plugin-closedcaption",
"video/gst-plugin-dav1d",
"video/gst-plugin-flv",
"video/gst-plugin-gif",
"video/gst-plugin-rav1e",
]
[profile.release]
lto = true
opt-level = 3
debug = true
panic = 'unwind'
[profile.dev]
opt-level = 1