-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
40 lines (33 loc) · 950 Bytes
/
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
[package]
name = "bevy_cobweb"
description = "Reactivity primitives for Bevy"
authors = ["koe <[email protected]>"]
version = "0.13.0-rc.3"
edition = "2021"
keywords = ["gamedev", "reactive"]
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/UkoeHB/bevy_cobweb"
[workspace]
members = ["bevy_cobweb_derive"]
[lib]
path = "src/lib.rs"
doctest = false
test = false
[[test]]
name = "tests"
path = "tests/test/mod.rs"
doctest = false
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
bevy = { version = "0.15.0-rc.3", default-features = false }
crossbeam = { version = "0.8" }
fxhash = { version = "0.2" }
itertools = { version = "0.13" }
smallvec = { version = "1.13", features = ["drain_filter"] }
tracing = { version = "0.1.27" }
bevy_cobweb_derive = { path = "bevy_cobweb_derive", version = "0.1.0" }
[dev-dependencies]
tracing-subscriber = { version = "0.3" }