mirror of
https://github.com/ManchildProductions/UXP-Fixed.git
synced 2026-07-21 03:48:43 +00:00
38 lines
604 B
TOML
38 lines
604 B
TOML
[package]
|
|
name = "gkrust"
|
|
version = "0.1.0"
|
|
authors = ["nobody@mozilla.org"]
|
|
license = "MPL-2.0"
|
|
description = "Rust code for libxul"
|
|
|
|
[dependencies]
|
|
gkrust-shared = { path = "shared" }
|
|
|
|
[lib]
|
|
path = "lib.rs"
|
|
crate-type = ["staticlib"]
|
|
test = false
|
|
doctest = false
|
|
bench = false
|
|
doc = false
|
|
plugin = false
|
|
harness = false
|
|
|
|
# Explicitly specify what our profiles use.
|
|
[profile.dev]
|
|
opt-level = 1
|
|
debug = true
|
|
rpath = false
|
|
lto = false
|
|
debug-assertions = true
|
|
codegen-units = 1
|
|
panic = "abort"
|
|
|
|
[profile.release]
|
|
opt-level = 2
|
|
debug = true
|
|
rpath = false
|
|
lto = true
|
|
debug-assertions = false
|
|
panic = "abort"
|