-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (28 loc) · 910 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 = "gst-plugin-apriltag"
description = "support for April Tag fiducial markers"
version = "0.1.0"
license = "BSD-2-Clause"
authors = ["Andrew Straw <[email protected]>"]
edition = "2021"
rust-version = "1.76"
repository = "https://github.com/strawlab/strand-braid"
[lib]
name = "gstrsapriltag"
crate-type = ["cdylib", "rlib", "staticlib"]
path = "src/lib.rs"
[dependencies]
glib = "0.10"
gobject-sys = "0.10"
gstreamer = "0.16"
gstreamer-base = "0.16"
gstreamer-video = "0.16"
lazy_static = "1.0"
csv = "1.1"
serde = { version = "1.0", features = ["derive"] }
bytes = "0.6"
ads-apriltag = { git = "https://github.com/strawlab/strand-braid", rev = "79ce6469aebc599a5ff75c42769a5a1593a5f136" }
[build-dependencies]
gst-plugin-version-helper = "0.7.5"
[dev-dependencies]
download-verify = { git = "https://github.com/strawlab/strand-braid", rev = "79ce6469aebc599a5ff75c42769a5a1593a5f136" }