forked from gavlig/kodiki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
115 lines (84 loc) · 3.84 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
[package]
name = "kodiki"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "kodiki"
path = "src/main.rs"
# 1 Enable only a small amount of optimization in debug mode
[profile.dev]
opt-level = 1
# 3 Enable high optimizations for dependencies (incl. Bevy), but not for our code:
[profile.dev.package."*"]
opt-level = 3
[features]
default = []
tracing = ["bevy_egui", "puffin_egui", "bevy_puffin"]
stats = ["bevy-debug-text-overlay"]
debug = ["bevy_prototype_debug_lines", "bevy_polyline", "bevy-debug-text-overlay"]
word_spawn_debug = []
scroll_offset_debug = []
[dependencies]
#
# GENERIC
#
itertools = "0.10"
ron = "0.8"
bitflags = "2.3"
serde = { version = "1", features = ["derive"] }
serde_json = { version = "1.0.83" }
hex = { version = "0.4.3"}
futures-lite = { version = "1.11.3" }
#
# BEVY
#
bevy = { version = "0.10", features = ["bevy_render", "wayland"] }
bevy_framepace = { version = "0.12" }
bevy_tweening = { version = "0.7" }
bevy-debug-text-overlay = { version = "5.1", optional = true }
bevy_prototype_debug_lines = { version = "0.10", optional = true, features = ["3d"] }
bevy_polyline = { version = "0.6", optional = true }
# modified for kodiki
bevy_contrib_colors = { git = "https://github.com/gavlig/bevy_contrib_colors.git" }
bevy_reader_camera = { git = "https://github.com/gavlig/bevy_reader_camera.git", branch = "kodiki_0.1" }
bevy_rapier3d = { git = "https://github.com/gavlig/bevy_rapier", branch = "kodiki_0.1", features = ["simd-stable", "debug-render"] } # { version = "0.21", features = ["simd-stable", "debug-render"] }
bevy-vfx-bag = { git = "https://github.com/gavlig/bevy-vfx-bag.git", branch = "kodiki_0.1", features = ["hdr"], default-features = false } # { version = "0.2.0" } #
# perf tracing
bevy_egui = { version = "0.20", optional = true }
puffin_egui = { version = "0.20", optional = true }
bevy_puffin = { version = "0.4", optional = true }
# text rendering
ab_glyph = "0.2.18" # read ttf/otf and get parametric glyphs # { path = "../ab-glyph/glyph" }
lyon = "1.0.1" # convert paramteric glyphs to 2d geometry # { path = "../lyon" }
#
# HELIX
#
helix-core = { git = "https://github.com/gavlig/helix-editor.git", branch = "kodiki_0.1" }
helix-lsp = { git = "https://github.com/gavlig/helix-editor.git", branch = "kodiki_0.1" }
helix-dap = { git = "https://github.com/gavlig/helix-editor.git", branch = "kodiki_0.1" }
helix-loader = { git = "https://github.com/gavlig/helix-editor.git", branch = "kodiki_0.1" }
helix-view = { git = "https://github.com/gavlig/helix-editor.git", branch = "kodiki_0.1" }
helix-term = { git = "https://github.com/gavlig/helix-editor.git", branch = "kodiki_0.1" }
helix-tui = { git = "https://github.com/gavlig/helix-editor.git", branch = "kodiki_0.1" }
anyhow = "1"
signal-hook = "0.3"
tokio = { version = "1", features = ["rt", "rt-multi-thread", "io-util", "io-std", "time", "process", "macros", "fs", "parking_lot"] }
tokio-stream = { version = "0.1" }
arc-swap = { version = "1.5.1" }
futures-util = { version = "0.3", features = ["std", "async-await"], default-features = false }
log = { version = "0.4" }
#
# WEZTERM
#
wezterm_portable = { git = "https://github.com/gavlig/wezterm_portable.git", branch = "kodiki_0.1" }
portable-pty = { git = "https://github.com/gavlig/wezterm.git", branch = "kodiki_0.1" }
termwiz = { git = "https://github.com/gavlig/wezterm.git", branch = "kodiki_0.1", features = ["use_image"] }
crossbeam-channel = { version = "0.5" }
[target.'cfg(not(windows))'.dependencies] # https://github.com/vorner/signal-hook/issues/100
signal-hook-tokio = { version = "0.3", features = ["futures-v0_3"] }
#
#
#
[patch.crates-io]
bevy = { git = "https://github.com/gavlig/bevy.git", branch = "kodiki_0.1" }
rapier3d = { git = "https://github.com/gavlig/rapier.git", branch = "kodiki_0.1" }