diff --git a/Cargo.toml b/Cargo.toml index b8a897e753..5b6e024821 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -68,9 +68,7 @@ version = "0.0.1" # change the tag value in this Cargo.toml to point to that tag, and `cargo update`. # This way, GitHub Actions works and nobody's builds get broken. # TODO: Switch this back to roc-lang/inkwell once it is updated -inkwell = { git = "https://github.com/roc-lang/inkwell", branch = "inkwell-llvm-16", features = [ - "llvm16-0", -] } +inkwell = { git = "https://github.com/roc-lang/inkwell", branch = "inkwell-llvm-16", features = ["llvm16-0"] } arrayvec = "0.7.2" # update roc_std/Cargo.toml on change backtrace = "0.3.67" @@ -79,27 +77,18 @@ bincode = "1.3.3" bitflags = "1.3.2" bitvec = "1.0.1" blake3 = "1.3.3" -brotli = "3.3.4" # used for decompressing tarballs over HTTPS, if the server supports brotli +brotli = "3.3.4" # used for decompressing tarballs over HTTPS, if the server supports brotli bumpalo = { version = "3.12.0", features = ["collections"] } bytemuck = { version = "1.13.1", features = ["derive"] } capstone = { version = "0.11.0", default-features = false } cgmath = "0.18.0" chrono = "0.4.26" -clap = { version = "4.2.7", default-features = false, features = [ - "std", - "color", - "suggestions", - "help", - "usage", - "error-context", -] } +clap = { version = "4.2.7", default-features = false, features = ["std", "color", "suggestions", "help", "usage", "error-context"] } colored = "2.0.0" console_error_panic_hook = "0.1.7" const_format = { version = "0.2.30", features = ["const_generics"] } copypasta = "0.8.2" -criterion = { git = "https://github.com/Anton-4/criterion.rs", features = [ - "html_reports", -], rev = "30ea0c5" } +criterion = { git = "https://github.com/Anton-4/criterion.rs", features = ["html_reports"], rev = "30ea0c5" } criterion-perf-events = { git = "https://github.com/Anton-4/criterion-perf-events", rev = "0f38c3e" } crossbeam = "0.8.2" dircpy = "0.3.14" @@ -112,12 +101,7 @@ fs_extra = "1.3.0" futures = "0.3.26" glyph_brush = "0.7.7" hashbrown = { version = "0.14.3" } -iced-x86 = { version = "1.18.0", default-features = false, features = [ - "std", - "decoder", - "op_code_info", - "instr_info", -] } +iced-x86 = { version = "1.18.0", default-features = false, features = ["std", "decoder", "op_code_info", "instr_info"] } im = "15.1.0" im-rc = "15.1.0" indexmap = "2.1.0" @@ -154,17 +138,12 @@ quote = "1.0.23" rand = "0.8.5" regex = "1.7.1" remove_dir_all = "0.8.1" -reqwest = { version = "0.11.23", default-features = false, features = [ - "blocking", - "rustls-tls", -] } # default-features=false removes libopenssl as a dependency on Linux, which might not be available! +reqwest = { version = "0.11.23", default-features = false, features = ["blocking", "rustls-tls"] } # default-features=false removes libopenssl as a dependency on Linux, which might not be available! rlimit = "0.9.1" rustyline = { git = "https://github.com/roc-lang/rustyline", rev = "e74333c" } rustyline-derive = { git = "https://github.com/roc-lang/rustyline", rev = "e74333c" } schemars = "0.8.12" -serde = { version = "1.0.153", features = [ - "derive", -] } # update roc_std/Cargo.toml on change +serde = { version = "1.0.153", features = ["derive"] } # update roc_std/Cargo.toml on change serde-xml-rs = "0.6.0" serde_json = "1.0.94" # update roc_std/Cargo.toml on change serial_test = "1.0.0" @@ -212,7 +191,7 @@ debug = true [profile.release-with-lto] inherits = "release" -lto = "thin" # TODO: We could consider full here since this is only used for packaged release on github. +lto = "thin" # TODO: We could consider full here since this is only used for packaged release on github. [profile.debug-full] inherits = "dev"