-
Notifications
You must be signed in to change notification settings - Fork 27
/
Cargo.toml
84 lines (73 loc) · 2.11 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[package]
name = "velo"
license = "MIT OR Apache-2.0"
description = "App for brainstorming & sharing ideas 🦀 Learning Project"
repository = "https://github.com/StaffEngineer/velo.git"
readme = "Readme.md"
version = "0.9.3"
edition = "2021"
exclude = ["assets/fonts/*", "velo.gif", "velo.png"]
# Enable max optimizations for dependencies, but not for our code:
[profile.dev.package."*"]
opt-level = 3
[profile.release]
opt-level = 'z'
[workspace]
members = [
"crates/bevy_markdown",
]
[dependencies]
bevy = { version = "0.11", default-features = false, features = [
"bevy_asset",
"bevy_core_pipeline",
"bevy_render",
"bevy_scene",
"bevy_sprite",
"bevy_text",
"bevy_ui",
"bevy_winit",
"png",
"x11",
] }
base64 = "0.21.0"
serde_json = "1.0.94"
uuid = { version = "1.3.0", default-features = false, features = ["v4", "js"] }
serde = { version = "1.0", features = ["derive"] }
linkify = "0.9.0"
ehttp = "0.1.0"
async-channel = "1.8"
image = { version = "0.24.5", default-features = false, features = ["ico"] }
bevy_markdown = { path = "crates/bevy_markdown" }
bevy_cosmic_edit = { version = "0.9.2" }
bevy_embedded_assets = { version = "0.8" }
cosmic-text = { version = "0.9" }
bevy_prototype_lyon = { version = "0.9" }
bevy_pancam = { version = "0.9" }
bevy_pkv = { version = "0.8.0", default-features = true }
rand = "0.8.5"
getrandom = { version = "0.2.10", features = ["js"] }
[target.'cfg(target_arch = "wasm32")'.dependencies]
console_error_panic_hook = "0.1.7"
web-sys = { version = "0.3.61", default-features = false, features = ["Window", "Location"] }
wasm-bindgen = "0.2.86"
js-sys = "0.3.61"
url = "2.3.1"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
bevy_hanabi = { version = "0.7" }
arboard = "3.2.0"
open = "4.0.1"
toml = "0.7.3"
tantivy = "0.19.2"
directories = "5.0"
env_logger = "0.10.0"
[dev-dependencies]
tempfile = "3.5.0"
[package.metadata.bundle]
name = "velo"
identifier = "com.rust.velo"
icon = ["128x128.icns"]
# [patch.crates-io]
# bevy = { path = "../bevy" }
# bevy_ecs = { path = "../bevy/crates/bevy_ecs" }
# [patch."https://github.com/bevyengine/bevy"]
# bevy = { path = "../bevy" }