format toml files
This commit is contained in:
parent
613c669f96
commit
a18abcd02a
@ -2,4 +2,4 @@ edition = "2021"
|
|||||||
fn_args_layout = "Compressed"
|
fn_args_layout = "Compressed"
|
||||||
fn_single_line = true
|
fn_single_line = true
|
||||||
hard_tabs = true
|
hard_tabs = true
|
||||||
wrap_comments = true
|
wrap_comments = true
|
||||||
|
|||||||
16
Cargo.toml
16
Cargo.toml
@ -7,12 +7,12 @@ license = "AGPL-3.0"
|
|||||||
repository = "https://github.com/Titaniumtown/YTBN-Graphing-Software"
|
repository = "https://github.com/Titaniumtown/YTBN-Graphing-Software"
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
crate-type=["cdylib"]
|
crate-type = ["cdylib"]
|
||||||
|
|
||||||
[profile.release]
|
[profile.release]
|
||||||
debug = false
|
debug = false
|
||||||
codegen-units = 1
|
codegen-units = 1
|
||||||
opt-level = "z" #optimize for size
|
opt-level = "z" #optimize for size
|
||||||
lto = true
|
lto = true
|
||||||
strip = true
|
strip = true
|
||||||
|
|
||||||
@ -24,9 +24,13 @@ lto = false
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
eframe = { git = "https://github.com/emilk/egui", default-features = false }
|
eframe = { git = "https://github.com/emilk/egui", default-features = false }
|
||||||
shadow-rs = { version = "0.9", default-features = false }
|
shadow-rs = { version = "0.9", default-features = false }
|
||||||
const_format = { version = "0.2.22", default-features = false, features = ["fmt"] }
|
const_format = { version = "0.2.22", default-features = false, features = [
|
||||||
|
"fmt",
|
||||||
|
] }
|
||||||
cfg-if = "1.0.0"
|
cfg-if = "1.0.0"
|
||||||
exmex = { git = "https://github.com/bertiqwerty/exmex.git", branch = "main", features = ["partial"] }
|
exmex = { git = "https://github.com/bertiqwerty/exmex.git", branch = "main", features = [
|
||||||
|
"partial",
|
||||||
|
] }
|
||||||
lazy_static = "1.4.0"
|
lazy_static = "1.4.0"
|
||||||
tar = "0.4.38"
|
tar = "0.4.38"
|
||||||
ruzstd = { git = "https://github.com/KillingSpark/zstd-rs.git" }
|
ruzstd = { git = "https://github.com/KillingSpark/zstd-rs.git" }
|
||||||
@ -43,5 +47,7 @@ instant = { version = "0.1.12" }
|
|||||||
instant = { version = "0.1.12", features = ["wasm-bindgen"] }
|
instant = { version = "0.1.12", features = ["wasm-bindgen"] }
|
||||||
console_error_panic_hook = "0.1.7"
|
console_error_panic_hook = "0.1.7"
|
||||||
wee_alloc = "0.4.5"
|
wee_alloc = "0.4.5"
|
||||||
wasm-bindgen = { version = "0.2.79", default-features = false, features = ["std"] }
|
wasm-bindgen = { version = "0.2.79", default-features = false, features = [
|
||||||
|
"std",
|
||||||
|
] }
|
||||||
web-sys = "0.3.56"
|
web-sys = "0.3.56"
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user