-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
33 lines (30 loc) · 973 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
28
29
30
31
32
33
[package]
name = "gstreamer-cucumber"
version = "0.1.0"
edition = "2021"
description = "Behavior-Driven Development framework for GStreamer"
authors = ["Thibault Saunier <[email protected]>", "Philippe Normand <[email protected]"]
license = "MIT"
repository = "https://github.com/philn/gstreamer-cucumber"
documentation = "https://philn.github.io/gstreamer-cucumber/"
keywords = ["multimedia"]
categories = ["multimedia"]
readme = "README.md"
[dependencies]
cucumber = "0.12"
async-trait = "0.1.52"
# TODO: Switch to upstream repo after gstreamer-validate made it upstream...
gstreamer = { version="0.19", features = ["v1_18"] }
gstreamer-video = { version="0.19", features = ["v1_18"] }
gstreamer-validate = { version="0.19", optional = true }
anyhow = "1"
tempfile = "3"
once_cell = "1.0"
futures = "0.3.17"
async-std = {version = "1.10.0", features = ["attributes"]}
glib = "0.15"
[[test]]
name = "basic"
harness = false
[features]
validate = ["gstreamer-validate"]