From 9a28247f6b8423eaed882ddb60d88ea52e1a1fee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Thu, 6 Apr 2017 20:12:46 +0300 Subject: [PATCH] Add license and various other fields to the Cargo.toml --- gstreamer-sys/Cargo.lock | 2 +- gstreamer-sys/Cargo.toml | 6 ++++++ gstreamer-sys/LICENSE | 23 +++++++++++++++++++++++ 3 files changed, 30 insertions(+), 1 deletion(-) create mode 100644 gstreamer-sys/LICENSE diff --git a/gstreamer-sys/Cargo.lock b/gstreamer-sys/Cargo.lock index 5f7c14c67..1320f03eb 100644 --- a/gstreamer-sys/Cargo.lock +++ b/gstreamer-sys/Cargo.lock @@ -1,6 +1,6 @@ [root] name = "gstreamer-sys" -version = "0.2.0" +version = "0.1.0" dependencies = [ "bitflags 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)", "glib-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/gstreamer-sys/Cargo.toml b/gstreamer-sys/Cargo.toml index 7e0438e60..1a90b79b9 100644 --- a/gstreamer-sys/Cargo.toml +++ b/gstreamer-sys/Cargo.toml @@ -25,3 +25,9 @@ build = "build.rs" links = "gstreamer-1.0" name = "gstreamer-sys" version = "0.1.0" +authors = ["Sebastian Dröge "] +description = "FFI bindings to libgstreamer-1.0" +homepage = "https://gstreamer.freedesktop.org" +keywords = ["ffi", "gstreamer", "gnome", "multimedia"] +repository = "https://github.com/sdroege/gstreamer-sys" +license = "MIT" diff --git a/gstreamer-sys/LICENSE b/gstreamer-sys/LICENSE new file mode 100644 index 000000000..3d76f6e2f --- /dev/null +++ b/gstreamer-sys/LICENSE @@ -0,0 +1,23 @@ +The MIT License (MIT) + +Copyright (c) 2017 Sebastian Dröge . + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +