Upload Cargo.toml
Browse files- Cargo.toml +37 -0
Cargo.toml
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[package]
|
| 2 |
+
name = "spectral"
|
| 3 |
+
version = "0.1.0"
|
| 4 |
+
edition = "2021"
|
| 5 |
+
rust-version = "1.75"
|
| 6 |
+
|
| 7 |
+
[workspace]
|
| 8 |
+
members = [
|
| 9 |
+
"spectral-core",
|
| 10 |
+
"spectral-font",
|
| 11 |
+
"spectral-render",
|
| 12 |
+
"spectral-pty",
|
| 13 |
+
]
|
| 14 |
+
|
| 15 |
+
[dependencies]
|
| 16 |
+
spectral-core = { path = "spectral-core" }
|
| 17 |
+
spectral-font = { path = "spectral-font" }
|
| 18 |
+
spectral-render = { path = "spectral-render" }
|
| 19 |
+
spectral-pty = { path = "spectral-pty" }
|
| 20 |
+
|
| 21 |
+
winit = "0.30"
|
| 22 |
+
env_logger = "0.11"
|
| 23 |
+
log = "0.4"
|
| 24 |
+
pollster = "0.4"
|
| 25 |
+
bytemuck = { version = "1.18", features = ["derive"] }
|
| 26 |
+
tokio = { version = "1", features = ["rt-multi-thread"] }
|
| 27 |
+
|
| 28 |
+
[profile.release]
|
| 29 |
+
lto = "fat"
|
| 30 |
+
codegen-units = 1
|
| 31 |
+
opt-level = 3
|
| 32 |
+
strip = true
|
| 33 |
+
|
| 34 |
+
[profile.release-opt-debug]
|
| 35 |
+
inherits = "release"
|
| 36 |
+
strip = false
|
| 37 |
+
debug = 1
|