-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
41 lines (35 loc) · 1.16 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
[workspace]
resolver = "2"
members = ["lib/*"]
[workspace.package]
version = "0.1.0-nightly"
authors = ["Celeste Peláez <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
[workspace.dependencies]
bevy_app = { version = "0.11", default-features = false }
bevy_ecs = { version = "0.11", default-features = false }
etheryal-identifier = { path = "lib/identifier" }
etheryal-extension-bevy = { path = "lib/extension-bevy" }
etheryal-extension-common = { path = "lib/extension-common" }
etheryal-extension-derive = { path = "lib/extension-derive" }
etheryal-extension-sys = { path = "lib/extension-sys" }
semver = { version = "1.0.17" }
[package]
name = "etheryal-extension"
version = { workspace = true }
authors = { workspace = true }
edition = { workspace = true }
license = { workspace = true }
[dependencies]
etheryal-extension-bevy = { workspace = true }
etheryal-extension-common = { workspace = true }
etheryal-identifier = { workspace = true }
semver = { workspace = true }
[dev-dependencies]
bevy_app = { workspace = true }
bevy_ecs = { workspace = true }
[dev-dependencies.cargo-husky]
version = "1"
default-features = false
features = ["user-hooks"]