forked from crabnebula-dev/devtools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (34 loc) · 827 Bytes
/
Cargo.toml
File metadata and controls
37 lines (34 loc) · 827 Bytes
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
[workspace]
resolver = "2"
members = [
"crates/wire",
"crates/devtools-core",
"crates/devtools",
"examples/*/src-tauri",
]
exclude = ["crates/v1", "crates/devtools", "examples/tauri-v1"]
[workspace.package]
authors = ["CrabNebula <[email protected]>"]
edition = "2021"
rust-version = "1.78.0"
license = "MIT OR Apache-2.0"
repository = "https://github.com/crabnebula-dev/devtools"
[workspace.dependencies]
tracing = "0.1"
tracing-core = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
thiserror = "^2.0"
tokio-stream = "0.1"
tauri = { version = "2.0.0", features = ["tracing"] }
tauri-build = "2.0.0"
tauri-plugin = "2.0.0"
tonic = "0.10"
prost = "0.12"
prost-types = "0.12"
tokio = "1"
[profile.release]
panic = "abort"
codegen-units = 1
lto = true
opt-level = "s"
strip = true