forked from rozgo/gst-tensorflow
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
27 lines (24 loc) · 986 Bytes
/
Cargo.toml
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
[package]
name = "gst-plugin-tensorflow"
version = "0.1.0"
authors = ["Alex Rozgo <[email protected]>"]
repository = "https://github.com/Simbotic/gst-plugin-tensorflow"
license = "MIT/Apache-2.0"
edition = "2018"
description = "Tensorflow GStreamer Plugin"
[dependencies]
rand = "0.7"
glib = { git = "https://github.com/gtk-rs/glib", features = [] }
gstreamer = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features = [] }
gstreamer-base = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features = [] }
gstreamer-video = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
gstreamer-audio = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
byte-slice-cast = "0.3"
num-traits = "0.2"
tensorflow = { version = "0.13.0", features = ["tensorflow_gpu"] }
[lib]
name = "gsttensorflow"
crate-type = ["cdylib"]
path = "src/lib.rs"
[build-dependencies]
gst-plugin-version-helper = { path="./gst-plugin-version-helper" }