forked from ChariotEngine/Chariot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
44 lines (39 loc) · 1 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
40
41
42
43
44
[package]
name = "chariot"
version = "0.1.0"
authors = ["Kevin Fuller <[email protected]>", "Taryn Hill <[email protected]>"]
[workspace]
members = ["crates/file_formats/dat",
"crates/file_formats/language",
"crates/file_formats/scn",
"crates/media",
"crates/resource",
"crates/types",
"crates/identifier",
"tools/slp_viewer"]
[profile.dev]
opt-level = 1
[dependencies]
clap = "2.17"
lazy_static = "0.2"
nalgebra = "0.12"
num = "0.1"
specs = "0.7"
time = "0.1"
chariot_drs = "0.1"
chariot_slp = "0.1"
chariot_palette = "0.1"
[dependencies.chariot_dat]
path = "crates/file_formats/dat"
[dependencies.chariot_language]
path = "crates/file_formats/language"
[dependencies.chariot_scn]
path = "crates/file_formats/scn"
[dependencies.chariot_media]
path = "crates/media"
[dependencies.chariot_resource]
path = "crates/resource"
[dependencies.chariot_types]
path = "crates/types"
[dependencies.chariot_identifier]
path = "crates/identifier"