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

gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2022-03-14 11:22:53 +0300
committerSebastian Dröge <sebastian@centricular.com>2022-03-14 11:23:16 +0300
commit6cf7d28481ddccf5c8eb84f639a7608c50314786 (patch)
treece7193e9cd8d006e08e2e5f5c130d524d8ed49fc /audio/lewton
parentaac7e52d87a37bf8bbe8d1e6e9a0e6fa55eeae77 (diff)
Use SPDX license format in Cargo.toml
Diffstat (limited to 'audio/lewton')
-rw-r--r--audio/lewton/Cargo.toml2
-rw-r--r--audio/lewton/src/lewtondec/imp.rs2
-rw-r--r--audio/lewton/src/lewtondec/mod.rs2
-rw-r--r--audio/lewton/src/lib.rs2
-rw-r--r--audio/lewton/tests/lewtondec.rs2
5 files changed, 5 insertions, 5 deletions
diff --git a/audio/lewton/Cargo.toml b/audio/lewton/Cargo.toml
index 242ad698c..3df098d42 100644
--- a/audio/lewton/Cargo.toml
+++ b/audio/lewton/Cargo.toml
@@ -3,7 +3,7 @@ name = "gst-plugin-lewton"
version = "0.9.0"
authors = ["Sebastian Dröge <sebastian@centricular.com>"]
repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs"
-license = "MIT/Apache-2.0"
+license = "MIT OR Apache-2.0"
description = "lewton Vorbis Decoder Plugin"
edition = "2021"
rust-version = "1.57"
diff --git a/audio/lewton/src/lewtondec/imp.rs b/audio/lewton/src/lewtondec/imp.rs
index 92abc8b27..b0eb0504d 100644
--- a/audio/lewton/src/lewtondec/imp.rs
+++ b/audio/lewton/src/lewtondec/imp.rs
@@ -6,7 +6,7 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.
//
-// SPDX-License-Identifier: MIT/Apache-2.0
+// SPDX-License-Identifier: MIT OR Apache-2.0
use gst::glib;
use gst::subclass::prelude::*;
diff --git a/audio/lewton/src/lewtondec/mod.rs b/audio/lewton/src/lewtondec/mod.rs
index 8db59b650..146f763a7 100644
--- a/audio/lewton/src/lewtondec/mod.rs
+++ b/audio/lewton/src/lewtondec/mod.rs
@@ -6,7 +6,7 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.
//
-// SPDX-License-Identifier: MIT/Apache-2.0
+// SPDX-License-Identifier: MIT OR Apache-2.0
use gst::glib;
use gst::prelude::*;
diff --git a/audio/lewton/src/lib.rs b/audio/lewton/src/lib.rs
index 0e3b259dc..6e49a70bd 100644
--- a/audio/lewton/src/lib.rs
+++ b/audio/lewton/src/lib.rs
@@ -6,7 +6,7 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.
//
-// SPDX-License-Identifier: MIT/Apache-2.0
+// SPDX-License-Identifier: MIT OR Apache-2.0
#![allow(clippy::non_send_fields_in_send_ty)]
use gst::glib;
diff --git a/audio/lewton/tests/lewtondec.rs b/audio/lewton/tests/lewtondec.rs
index 559d9080f..814c2b950 100644
--- a/audio/lewton/tests/lewtondec.rs
+++ b/audio/lewton/tests/lewtondec.rs
@@ -6,7 +6,7 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.
//
-// SPDX-License-Identifier: MIT/Apache-2.0
+// SPDX-License-Identifier: MIT OR Apache-2.0
use gst::prelude::*;