don't specify dependencies as much

This commit is contained in:
Simon Gardling 2022-04-06 08:59:39 -04:00
parent 245d58fd4f
commit 4e682de2df

View File

@ -27,42 +27,38 @@ lto = false
[dependencies] [dependencies]
eframe = { git = "https://github.com/Titaniumtown/egui.git", default-features = false } eframe = { git = "https://github.com/Titaniumtown/egui.git", default-features = false }
shadow-rs = { version = "0.11.0", default-features = false } shadow-rs = { version = "0.11", default-features = false }
const_format = { version = "0.2.22", default-features = false, features = [ const_format = { version = "0.2", default-features = false, features = ["fmt"] }
"fmt", cfg-if = "1"
] }
cfg-if = "1.0.0"
exmex = { git = "https://github.com/bertiqwerty/exmex.git", branch = "main", features = [ exmex = { git = "https://github.com/bertiqwerty/exmex.git", branch = "main", features = [
"partial", "partial",
] } ] }
lazy_static = "1.4.0" lazy_static = "1.4"
tar = "0.4.38" tar = "0.4"
ruzstd = { git = "https://github.com/KillingSpark/zstd-rs.git" } ruzstd = { git = "https://github.com/KillingSpark/zstd-rs.git" }
serde_json = "1.0.79" serde_json = "1.0"
tracing = "0.1.32" tracing = "0.1"
itertools = "0.10.3" itertools = "0.10"
static_assertions = "1.1.0" static_assertions = "1.1"
phf = "0.10.1" phf = "0.10"
[build-dependencies] [build-dependencies]
shadow-rs = "0.11.0" shadow-rs = "0.11"
command-run = "1.1.1" command-run = "1.1"
phf_codegen = "0.10.0" phf_codegen = "0.10"
itertools = "0.10.3" itertools = "0.10"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies] [target.'cfg(not(target_arch = "wasm32"))'.dependencies]
instant = { version = "0.1.12" } instant = { version = "0.1" }
tracing-subscriber = "0.3.9" tracing-subscriber = "0.3"
rayon = { git = "https://github.com/rayon-rs/rayon.git", optional = true } rayon = { git = "https://github.com/rayon-rs/rayon.git", optional = true }
async-lock = { git = "https://github.com/smol-rs/async-lock.git", optional = true } async-lock = { git = "https://github.com/smol-rs/async-lock.git", optional = true }
[target.'cfg(target_arch = "wasm32")'.dependencies] [target.'cfg(target_arch = "wasm32")'.dependencies]
instant = { version = "0.1.12", features = ["wasm-bindgen"] } instant = { version = "0.1", features = ["wasm-bindgen"] }
console_error_panic_hook = "0.1.7" console_error_panic_hook = "0.1"
wee_alloc = "0.4.5" wee_alloc = "0.4"
wasm-bindgen = { version = "0.2.79", default-features = false, features = [ wasm-bindgen = { version = "0.2", default-features = false, features = ["std"] }
"std", web-sys = "0.3"
] } tracing-wasm = "0.2"
web-sys = "0.3.56"
tracing-wasm = "0.2.1"