-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathCargo.toml
More file actions
47 lines (40 loc) · 1.16 KB
/
Cargo.toml
File metadata and controls
47 lines (40 loc) · 1.16 KB
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
40
41
42
43
44
45
46
47
[package]
name = "openusd"
version = "0.3.0"
edition = "2021"
repository = "https://github.com/mxpv/openusd"
license-file = "LICENSE"
exclude = ["/vendor"]
description = "Rust native USD library"
categories = ["graphics", "rendering", "rendering::data-formats"]
keywords = ["usd", "usda", "usdc", "usdz", "pxr"]
[features]
serde = ["dep:serde", "half/serde"]
[dependencies]
anyhow = "1.0.79"
bytemuck = { version = "1.14.0", features = ["derive"] }
strum = { version = "0.28.0", features = ["derive"] }
thiserror = "2"
lz4_flex = "0.13.0"
num-traits = "0.2.17"
half = { version = "2.3.1", features = ["bytemuck", "num-traits"] }
logos = "0.16.0"
serde = { version = "1", features = ["derive"], optional = true }
zip = { version = "8.2.0", default-features = false, features = ["deflate"] }
[dev-dependencies]
diff_json = "0.1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tempfile = "3"
[[test]]
name = "text_format"
required-features = ["serde"]
[[test]]
name = "text_writer_roundtrip"
required-features = ["serde"]
[[test]]
name = "binary_writer_roundtrip"
required-features = ["serde"]
[[test]]
name = "cross_format_roundtrip"
required-features = ["serde"]