this repo has no description
1[package]
2name = "magic"
3version = "0.1.0"
4edition = "2024"
5
6[dependencies]
7bevy = { version = "0.18.1", features = ["hotpatching", "jpeg", "dev", "wayland", "http", "https"]}
8bevy_hanabi = "0.18.0"
9jacquard = { version = "0.12.0-beta.1", git = "https://tangled.org/nonbinary.computer/jacquard", branch = "bos-beta", features = ["websocket"] }
10jacquard-common = { version = "0.12.0-beta.1", git = "https://tangled.org/nonbinary.computer/jacquard", branch = "bos-beta" }
11rand = "0.10.0"
12rand_chacha = "0.10.0"
13bevy_panorbit_camera = "0.34"
14bevy_brp_extras = "0.18.8"
15async-tungstenite = { version = "0.29", features = ["async-tls"] }
16crossbeam-channel = "0.5"
17futures-util = "0.3"
18futures-timer = "3"
19async-channel = "2"
20bevy-tokio-tasks = "0.18"
21reqwest = { version = "0.12", default-features = false, features = ["rustls-tls"] }
22tokio = { version = "1", features = ["rt-multi-thread"] }
23bytes = "1"
24http = "1"
25smol = "2"
26rusqlite = { version = "0.39", features = ["bundled"] }
27serde_json = "1"
28serde = "1"
29pulldown-cmark = "0.13"
30smol_str = "0.3"
31crossbeam-queue = "0.3"
32# perf by getting rid of trace logs at compile
33log = { version = "*", features = ["max_level_debug", "release_max_level_warn"] }
34
35[dev-dependencies]
36surf = { version = "2", default-features = false, features = ["h1-client-rustls", "middleware-logger"] }
37
38[[example]]
39name = "surf_xrpc_channel"
40path = "examples/surf_xrpc_channel.rs"
41
42# Enable a small amount of optimization in the dev profile.
43[profile.dev]
44opt-level = 1
45
46# Enable a large amount of optimization in the dev profile for dependencies.
47[profile.dev.package."*"]
48opt-level = 3