forked from amethyst/distill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
43 lines (38 loc) · 1.2 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
[package]
name = "atelier-assets"
version = "0.1.0"
authors = ["Karl Bergström <[email protected]>"]
edition = "2018"
description = "\"Offline\" asset processing and indexing for game engines"
exclude = ["examples/*"]
keywords = ["game", "engine", "assets", "loading", "processing", "indexing"]
categories = ["game-engines"]
repository = "https://github.com/amethyst/atelier-assets"
readme = "README.md"
license = "MIT OR Apache-2.0"
[workspace]
members = [
"importer",
"loader",
"schema",
"client",
"cli",
"daemon",
"core",
"examples/daemon_with_loader",
"examples/handle_integration",
]
[dependencies]
atelier-core = { version = "0.1", path = "core" }
atelier-daemon = { version = "0.1", path = "daemon" }
atelier-importer = { version = "0.1", path = "importer" }
atelier-loader = { version = "0.1", path = "loader" }
[features]
serde-1 = ["atelier-core/serde"]
asset_uuid_macro = ["atelier-core/asset_uuid_macro"]
type_uuid = ["atelier-core/type_uuid"]
serde_importers = ["atelier-importer/serde_importers"]
parallel_hash = [ "atelier-daemon/parallel_hash" ]
pretty_log = [ "atelier-daemon/pretty_log" ]
rpc_io = ["atelier-loader/rpc_io"]
handle = ["atelier-loader/handle"]