25 lines
443 B
TOML
25 lines
443 B
TOML
[package]
|
|
name = "mirror-shim"
|
|
version = { workspace = true }
|
|
edition = { workspace = true }
|
|
|
|
[dependencies]
|
|
mirror-core = { path = "../mirror-core" }
|
|
|
|
anyhow = { workspace = true }
|
|
|
|
windows-sys = { workspace = true }
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|
|
tracing-appender = { workspace = true }
|
|
mlua ={workspace = true}
|
|
|
|
[features]
|
|
default = []
|
|
args = []
|
|
|
|
|
|
|
|
[profile.release]
|
|
opt-level = "z"
|
|
panic = "abort" |