forked from raphamorim/rio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
58 lines (54 loc) · 1.36 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
[workspace]
members = [
"teletypewriter",
"sugarloaf",
"webassembly-examples/*",
"colors",
"config",
"corcovado",
"copa",
"rio-proc-macros",
"rio"
]
resolver = "2"
[workspace.package]
version = "0.0.18"
authors = ["Raphael Amorim <[email protected]>"]
edition = "2021"
license = "MIT"
keywords = ["graphics", "terminal"]
rust-version = "1.70"
repository = "https://github.com/raphamorim/rio"
homepage = "https://raphamorim.io/rio"
documentation = "https://github.com/raphamorim/rio#readme"
[workspace.dependencies]
bytemuck = { version = "1.13.1", features = [ "derive" ] }
log = "0.4.19"
serde = { version = "1.0.174", features = ["derive"] }
teletypewriter = { path = "teletypewriter" }
sugarloaf = { path = "sugarloaf" }
corcovado = { path = "corcovado" }
tokio = { version = "1.29.1", features = ["rt", "rt-multi-thread", "macros"] }
wgpu = "0.16.0"
copa = { path = "copa", default-features = true }
winit = { version = "0.29.1-beta", default-features = false, features = ["serde"] }
libc = "0.2.147"
wasm-bindgen = "0.2.87"
wasm-bindgen-futures = "0.4.34"
wasm-bindgen-test = "0.3"
env_logger = "0.10"
console_log = "0.2"
console_error_panic_hook = "0.1.7"
[profile.release]
opt-level = "s"
lto = "thin"
strip = true
debug = 0
panic = 'abort'
codegen-units = 1
incremental = false
[profile.dev]
split-debuginfo = "unpacked"
lto = false
incremental = true
opt-level = 0