Compare commits

...

3 commits
main ... 0.1.0

Author SHA1 Message Date
Sebastian Dröge
fd54eea586 Fix documentation URL 2017-12-22 16:29:36 +02:00
Sebastian Dröge
ffca043df3 Add CHANGELOG.md to gst-plugin 2017-12-22 16:20:37 +02:00
Sebastian Dröge
1b153ee597 Update versions of all dependencies and point to releases instead of GIT 2017-12-22 16:03:18 +02:00
8 changed files with 43 additions and 31 deletions

View file

@ -6,11 +6,11 @@ repository = "https://github.com/sdroege/gst-plugin-rs"
license = "MIT/Apache-2.0"
[dependencies]
gst-plugin = { path="../gst-plugin" }
glib = { git = "https://github.com/gtk-rs/glib" }
gstreamer = { git = "https://github.com/sdroege/gstreamer-rs", features = ["v1_10"] }
gstreamer-base = { git = "https://github.com/sdroege/gstreamer-rs", features = ["v1_10"] }
gstreamer-audio = { git = "https://github.com/sdroege/gstreamer-rs", features = ["v1_10"] }
gst-plugin = { version = "0.1", path="../gst-plugin" }
glib = "0.4"
gstreamer = { version = "0.10", features = ["v1_10"] }
gstreamer-base = { version = "0.10", features = ["v1_10"] }
gstreamer-audio = { version = "0.10", features = ["v1_10"] }
byte-slice-cast = "0.1"
num-traits = "0.1"

View file

@ -7,9 +7,9 @@ license = "MIT/Apache-2.0"
[dependencies]
url = "1.1"
gst-plugin = { path="../gst-plugin" }
gst-plugin-simple = { path="../gst-plugin-simple" }
gstreamer = { git = "https://github.com/sdroege/gstreamer-rs", features = ["v1_10"] }
gst-plugin = { version = "0.1", path="../gst-plugin" }
gst-plugin-simple = { path = "../gst-plugin-simple" }
gstreamer = { version = "0.10", features = ["v1_10"] }
[lib]
name = "gstrsfile"

View file

@ -7,12 +7,12 @@ license = "MIT/Apache-2.0"
[dependencies]
url = "1.1"
gst-plugin = { path="../gst-plugin" }
gst-plugin = { version = "0.1", path="../gst-plugin" }
gst-plugin-simple = { path="../gst-plugin-simple" }
gstreamer = { git = "https://github.com/sdroege/gstreamer-rs", features = ["v1_10"] }
gstreamer = { version = "0.10", features = ["v1_10"] }
num-rational = { version = "0.1", default-features = false, features = [] }
nom = "3.0"
flavors = {git = "https://github.com/rust-av/flavors.git"}
flavors = { git = "https://github.com/rust-av/flavors.git" }
muldiv = "0.1"
[lib]

View file

@ -7,10 +7,10 @@ license = "MIT/Apache-2.0"
[dependencies]
url = "1.1"
gst-plugin = { path="../gst-plugin" }
gst-plugin = { version = "0.1", path="../gst-plugin" }
gst-plugin-simple = { path="../gst-plugin-simple" }
reqwest = "0.8"
gstreamer = { git = "https://github.com/sdroege/gstreamer-rs", features = ["v1_10"] }
gstreamer = { version = "0.10", features = ["v1_10"] }
[lib]
name = "gstrshttp"

View file

@ -7,10 +7,10 @@ license = "MIT/Apache-2.0"
[dependencies]
url = "1.1"
glib = { git = "https://github.com/gtk-rs/glib" }
gst-plugin = { path="../gst-plugin" }
gstreamer = { git = "https://github.com/sdroege/gstreamer-rs", features = ["v1_10"] }
gstreamer-base = { git = "https://github.com/sdroege/gstreamer-rs", features = ["v1_10"] }
glib = "0.4"
gst-plugin = { version = "0.1", path="../gst-plugin" }
gstreamer = { version = "0.10", features = ["v1_10"] }
gstreamer-base = { version = "0.10", features = ["v1_10"] }
[lib]
name = "gst_plugin_simple"

View file

@ -5,12 +5,12 @@ authors = ["Sebastian Dröge <sebastian@centricular.com>"]
license = "LGPL-2.1+"
[dependencies]
glib = { git = "https://github.com/gtk-rs/glib" }
gstreamer = { git = "https://github.com/sdroege/gstreamer-rs", features = ["v1_10"] }
gstreamer-video = { git = "https://github.com/sdroege/gstreamer-rs", features = ["v1_10"] }
gst-plugin = { path = "../gst-plugin" }
gtk = { git = "https://github.com/gtk-rs/gtk", features = ["v3_6"], optional = true }
gio = { git = "https://github.com/gtk-rs/gio", optional = true }
glib = "0.4"
gstreamer = { version = "0.10", features = ["v1_10"] }
gstreamer-video = { version = "0.10", features = ["v1_10"] }
gst-plugin = { version = "0.1", path = "../gst-plugin" }
gtk = { version = "0.3", features = ["v3_6"], optional = true }
gio = { version = "0.3", optional = true }
send-cell = { version = "0.1", optional = true }
[dev-dependencies]

12
gst-plugin/CHANGELOG.md Normal file
View file

@ -0,0 +1,12 @@
# Changelog
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html),
specifically the [variant used by Rust](http://doc.crates.io/manifest.html#the-version-field).
## [0.1.0] - 2017-12-22
- Initial release of the `gst-plugin` crate.
[Unreleased]: https://github.com/sdroege/gstreamer-rs/compare/0.1.0...HEAD

View file

@ -8,20 +8,20 @@ repository = "https://github.com/sdroege/gst-plugin-rs/gst-plugin"
license = "MIT/Apache-2.0"
readme = "README.md"
homepage = "https://gstreamer.freedesktop.org"
documentation = "https://sdroege.github.io/rustdoc/gst-plugin/gst_plugin_rs"
documentation = "https://sdroege.github.io/rustdoc/gst-plugin/gst_plugin/"
keywords = ["gstreamer", "multimedia", "audio", "video", "gnome"]
[dependencies]
libc = "0.2"
lazy_static = "1.0"
byteorder = "1.0"
glib-sys = { git = "https://github.com/gtk-rs/sys" }
gobject-sys = { git = "https://github.com/gtk-rs/sys" }
gstreamer-sys = { git = "https://github.com/sdroege/gstreamer-sys", features = ["v1_10"] }
gstreamer-base-sys = { git = "https://github.com/sdroege/gstreamer-sys", features = ["v1_10"] }
glib = { git = "https://github.com/gtk-rs/glib" }
gstreamer = { git = "https://github.com/sdroege/gstreamer-rs", features = ["v1_10"] }
gstreamer-base = { git = "https://github.com/sdroege/gstreamer-rs" }
glib-sys = "0.5"
gobject-sys = "0.5"
gstreamer-sys = { version = "0.4", features = ["v1_10"] }
gstreamer-base-sys = { version = "0.4", features = ["v1_10"] }
glib = "0.4"
gstreamer = { version = "0.10", features = ["v1_10"] }
gstreamer-base = { version = "0.10" }
[lib]
name = "gst_plugin"