forked from strawlab/pylon-cxx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (27 loc) · 886 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
[package]
name = "pylon-cxx"
description = "Rust wrapper of the Pylon libraries for Basler cameras"
license = "MIT OR Apache-2.0"
version = "0.3.8"
authors = [
"Andrew Straw <[email protected]>",
"Falco Hirschenberger <[email protected]>",
]
edition = "2018"
repository = "https://github.com/strawlab/pylon-cxx"
keywords = ["basler", "camera", "bindings", "pylon", "image"]
categories = ["api-bindings", "external-ffi-bindings", "hardware-support", "multimedia::images"]
[dependencies]
cxx = "1.0.65"
tokio = {version = "1", features = ["rt", "macros", "net"], optional=true }
tokio-stream = { version = "0.1.8", optional = true }
[build-dependencies]
cxx-build = "1.0.65"
[dev-dependencies]
anyhow = "1"
[features]
backtrace = []
stream = ["tokio", "tokio-stream"]
[[example]]
name = "async-grab"
required-features = ["stream", "tokio/rt-multi-thread"]