-
-
Notifications
You must be signed in to change notification settings - Fork 170
/
Copy pathCargo.toml
28 lines (24 loc) · 803 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
[package]
name = "opencv-binding-generator"
description = "Binding generator for opencv crate"
repository = "https://github.com/twistedfall/opencv-rust"
readme = "README.md"
version = "0.96.1"
license = "MIT"
authors = ["Pro <twisted.fall@gmail.com>"]
edition = "2021"
rust-version = "1.77.0"
exclude = ["release.toml"]
[lib]
[dependencies]
clang = { version = "2", features = ["clang_6_0"] }
clang-sys = { version = "1", features = ["clang_6_0"] }
dunce = "1"
once_cell = "1" # replace with std::sync::LazyLock when MSRV is 1.80
percent-encoding = { version = "2", default-features = false }
regex = "1"
shlex = { version = "1.3", default-features = false }
[dev-dependencies]
tempfile = { version = "3", default-features = false }
[features]
clang-runtime = ["clang/runtime", "clang-sys/runtime"]