forked from vtubing/orphism
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
33 lines (31 loc) · 1.19 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
[package]
name = "orphism"
version = "0.3.0"
edition = "2021"
authors = ["Chris Olstrom <[email protected]>"]
license = "MIT"
repository = "https://github.com/vtubing/orphism"
documentation = "https://docs.rs/orphism"
description = "a library for interacting with a certain format sometimes used for VTuber model assets"
[dependencies]
cap-std = "^ 2"
derivative = "^ 2"
infer = "^ 0.15"
log = "^ 0.4"
mediatype = { version = "^ 0.19", features = ["serde"] }
remain = "^ 0.2"
serde = { version = "^ 1", features = ["derive"] }
serde_json = { version = "^ 1", features = ["preserve_order"] }
serde_yaml = "^ 0.9"
strum = { version = "^ 0.25", features = ["derive"] }
thiserror = "^ 1"
caff-archive = { path = "../caff-archive", version = "0.1.0" }
cdi3 = { path = "../cdi3", version = "0.2.0" }
exp3 = { path = "../exp3", version = "0.2.0" }
moc3 = { path = "../moc3", version = "0.1.0" }
model3 = { path = "../model3", version = "0.2.0" }
motion3 = { path = "../motion3", version = "0.2.0" }
motionsync3 = { path = "../motionsync3", version = "0.2.0" }
physics3 = { path = "../physics3", version = "0.2.0" }
pose3 = { path = "../pose3", version = "0.2.0" }
userdata3 = { path = "../userdata3", version = "0.2.0" }