-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
37 lines (32 loc) · 912 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
34
35
36
37
[package]
name = "pylon-cxx"
description = "Rust wrapper of the Pylon libraries for Basler cameras"
license = "MIT OR Apache-2.0"
version = "0.4.2"
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 = ["dep:tokio", "dep:tokio-stream"]
[[example]]
name = "async-grab"
required-features = ["stream", "tokio/rt-multi-thread"]