-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
39 lines (33 loc) · 1.13 KB
/
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
38
39
[package]
name = "oiio"
version = "0.1.0"
edition = "2021"
description = "High-level OpenImageIO bindings over oiio-sys"
documentation = "https://docs.rs/oiio"
authors = [
"Scott Wilson <[email protected]>",
"David Aguilar <[email protected]>",
]
license = "Apache-2.0"
keywords = ["graphics", "images", "render", "texture", "vfx"]
categories = ["graphics", "multimedia::images", "rendering::data-formats"]
readme = "README.md"
homepage = "https://github.com/vfx-rs/oiio-bind"
repository = "https://github.com/vfx-rs/oiio-bind.git"
[workspace]
members = ["oiio-sys"]
[workspace.dependencies]
anyhow = "1.0.80"
cxx = { version = "1.0.117", features = ["c++17"] }
thiserror = "1.0.57"
[dependencies]
anyhow = { workspace = true }
cxx = { workspace = true }
oiio-sys = { path = "oiio-sys", version = "0.2.0-beta0" }
thiserror = { workspace = true }
[dev-dependencies]
# The docs are the same across all platforms so we only need to build once.
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
rustc-args = ["--cfg", "docsrs"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html