mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-04 20:28:02 +00:00
run cargo upgrade to update compatible version numbers
This commit is contained in:
parent
5e9c7b0621
commit
5e34621613
4 changed files with 58 additions and 58 deletions
8
Cargo.lock
generated
8
Cargo.lock
generated
|
@ -4070,9 +4070,9 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "serde"
|
||||
version = "1.0.152"
|
||||
version = "1.0.153"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "bb7d1f0d3021d347a83e556fc4683dea2ea09d87bccdf88ff5c12545d89d5efb"
|
||||
checksum = "3a382c72b4ba118526e187430bb4963cd6d55051ebf13d9b25574d379cc98d20"
|
||||
dependencies = [
|
||||
"serde_derive",
|
||||
]
|
||||
|
@ -4101,9 +4101,9 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "serde_derive"
|
||||
version = "1.0.152"
|
||||
version = "1.0.153"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "af487d118eecd09402d70a5d72551860e788df87b464af30e5ea6a38c75c541e"
|
||||
checksum = "1ef476a5790f0f6decbc66726b6e5d63680ed518283e64c7df415989d880954f"
|
||||
dependencies = [
|
||||
"proc-macro2",
|
||||
"quote",
|
||||
|
|
96
Cargo.toml
96
Cargo.toml
|
@ -75,98 +75,98 @@ base64-url = "1.4.13"
|
|||
bincode = "1.3.3"
|
||||
bitflags = "1.3.2"
|
||||
bitvec = "1.0.1"
|
||||
blake3 = "1.3.1"
|
||||
blake3 = "1.3.3"
|
||||
brotli = "3.3.4" # used for decompressing tarballs over HTTPS, if the server supports brotli
|
||||
bumpalo = { version = "3.11.1", features = ["collections"] }
|
||||
bytemuck = { version = "1.12.1", features = ["derive"] }
|
||||
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"
|
||||
clap = { version = "3.2.20", default-features = false, features = ["std", "color", "suggestions"] }
|
||||
clap = { version = "3.2.23", default-features = false, features = ["std", "color", "suggestions"] }
|
||||
colored = "2.0.0"
|
||||
confy = { git = 'https://github.com/rust-cli/confy', features = ["yaml_conf"], default-features = false }
|
||||
console_error_panic_hook = "0.1.7"
|
||||
const_format = { version = "0.2.23", features = ["const_generics"] }
|
||||
copypasta = "0.8.1"
|
||||
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"] }
|
||||
criterion-perf-events = { git = "https://github.com/Anton-4/criterion-perf-events" }
|
||||
crossbeam = "0.8.2"
|
||||
dircpy = "0.3.13"
|
||||
dircpy = "0.3.14"
|
||||
distance = "0.4.0"
|
||||
encode_unicode = "1.0.0"
|
||||
errno = "0.3.0"
|
||||
flate2 = "1.0.24"
|
||||
flate2 = "1.0.25"
|
||||
fnv = "1.0.7"
|
||||
fs_extra = "1.2.0"
|
||||
futures = "0.3.24"
|
||||
glyph_brush = "0.7.5"
|
||||
fs_extra = "1.3.0"
|
||||
futures = "0.3.26"
|
||||
glyph_brush = "0.7.7"
|
||||
hashbrown = { version = "0.12.3", features = ["bumpalo"] }
|
||||
iced-x86 = { version = "1.15.0", default-features = false, features = ["std", "decoder", "op_code_info", "instr_info"] }
|
||||
im = "15.0.0"
|
||||
im-rc = "15.0.0"
|
||||
indexmap = "1.8.1"
|
||||
indoc = "1.0.7"
|
||||
insta = "1.20.0"
|
||||
js-sys = "0.3.60"
|
||||
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 = "1.9.2"
|
||||
indoc = "1.0.9"
|
||||
insta = "1.28.0"
|
||||
js-sys = "0.3.61"
|
||||
lazy_static = "1.4.0"
|
||||
libc = "0.2.135"
|
||||
libc = "0.2.139"
|
||||
libfuzzer-sys = "0.3"
|
||||
libloading = "0.7.1"
|
||||
log = "0.4.14"
|
||||
libloading = "0.7.4"
|
||||
log = "0.4.17"
|
||||
mach_object = "0.1"
|
||||
maplit = "1.0.2"
|
||||
memmap2 = "0.5.7"
|
||||
mimalloc = { version = "0.1.26", default-features = false }
|
||||
nonempty = "0.8.0"
|
||||
memmap2 = "0.5.10"
|
||||
mimalloc = { version = "0.1.34", default-features = false }
|
||||
nonempty = "0.8.1"
|
||||
object = { version = "0.30.3", features = ["read", "write"] }
|
||||
packed_struct = "0.10.0"
|
||||
packed_struct = "0.10.1"
|
||||
page_size = "0.4.2"
|
||||
palette = "0.6.1"
|
||||
parking_lot = "0.12"
|
||||
peg = "0.8.1"
|
||||
perfcnt = "0.7.1"
|
||||
pest = "2.3.1"
|
||||
pest_derive = "2.3.1"
|
||||
perfcnt = "0.7.3"
|
||||
pest = "2.5.6"
|
||||
pest_derive = "2.5.6"
|
||||
pretty_assertions = "1.3.0"
|
||||
proc-macro2 = "1.0.32"
|
||||
proptest = "1.0.0"
|
||||
proc-macro2 = "1.0.51"
|
||||
proptest = "1.1.0"
|
||||
pulldown-cmark = { version = "0.9.2", default-features = false }
|
||||
quickcheck = "1.0.3"
|
||||
quickcheck_macros = "1.0.0"
|
||||
quote = "1.0.10"
|
||||
rand = "0.8.4"
|
||||
regex = "1.5.5"
|
||||
remove_dir_all = "0.8.0"
|
||||
reqwest = { version = "0.11.13", default-features = false, features = ["blocking", "rustls-tls"] } # default-features=false removes libopenssl as a dependency on Linux, which might not be available!
|
||||
quote = "1.0.23"
|
||||
rand = "0.8.5"
|
||||
regex = "1.7.1"
|
||||
remove_dir_all = "0.8.1"
|
||||
reqwest = { version = "0.11.14", default-features = false, features = ["blocking", "rustls-tls"] } # default-features=false removes libopenssl as a dependency on Linux, which might not be available!
|
||||
rlimit = "0.6.2"
|
||||
rustyline = { git = "https://github.com/roc-lang/rustyline", rev = "e74333c" }
|
||||
rustyline-derive = { git = "https://github.com/roc-lang/rustyline", rev = "e74333c" }
|
||||
serde = { version = "1.0.144", features = ["derive"] }
|
||||
serde = { version = "1.0.153", features = ["derive"] }
|
||||
serde-xml-rs = "0.5.1"
|
||||
serde_json = "1.0.83"
|
||||
serde_json = "1.0.94"
|
||||
serial_test = "1.0.0"
|
||||
signal-hook = "0.3.14"
|
||||
snafu = { version = "0.7.1", features = ["backtraces"] }
|
||||
signal-hook = "0.3.15"
|
||||
snafu = { version = "0.7.4", features = ["backtraces"] }
|
||||
static_assertions = "1.1.0"
|
||||
strip-ansi-escapes = "0.1.1"
|
||||
strum = { version = "0.24.1", features = ["derive"] }
|
||||
strum_macros = "0.24.1"
|
||||
syn = { version = "1.0.81", features = ["full", "extra-traits"] }
|
||||
strum_macros = "0.24.3"
|
||||
syn = { version = "1.0.109", features = ["full", "extra-traits"] }
|
||||
tar = "0.4.38"
|
||||
target-lexicon = "0.12.3"
|
||||
target-lexicon = "0.12.6"
|
||||
tempfile = "=3.2.0"
|
||||
threadpool = "1.8.1"
|
||||
tracing = { version = "0.1.36", features = ["release_max_level_off"] }
|
||||
tracing = { version = "0.1.37", features = ["release_max_level_off"] }
|
||||
tracing-appender = "0.2.2"
|
||||
tracing-subscriber = { version = "0.3.16", features = ["env-filter"] }
|
||||
unicode-segmentation = "1.10.0"
|
||||
uuid = { version = "1.1.2", features = ["v4"] }
|
||||
unicode-segmentation = "1.10.1"
|
||||
uuid = { version = "1.3.0", features = ["v4"] }
|
||||
walkdir = "2.3.2"
|
||||
wasm-bindgen = "0.2.79"
|
||||
wasm-bindgen-futures = "0.4.33"
|
||||
wasm-bindgen = "0.2.84"
|
||||
wasm-bindgen-futures = "0.4.34"
|
||||
wgpu = "0.12.0"
|
||||
wgpu_glyph = "0.16.0"
|
||||
winapi = { version = "0.3.9", features = ["memoryapi"] }
|
||||
winit = "0.26.0"
|
||||
winit = "0.26.1"
|
||||
wyhash = "0.5.0"
|
||||
|
||||
# Optimizations based on https://deterministic.space/high-performance-rust.html
|
||||
|
|
8
crates/vendor/morphic_lib/Cargo.toml
vendored
8
crates/vendor/morphic_lib/Cargo.toml
vendored
|
@ -5,7 +5,7 @@ authors = ["William Brandon", "Wilson Berkow", "Frank Dai", "Benjamin Driscoll"]
|
|||
edition = "2018"
|
||||
|
||||
[dependencies]
|
||||
thiserror = "1.0.30"
|
||||
sha2 = "0.10.2"
|
||||
smallvec = "1.7.0"
|
||||
typed-arena = "2.0.1"
|
||||
thiserror = "1.0.39"
|
||||
sha2 = "0.10.6"
|
||||
smallvec = "1.10.0"
|
||||
typed-arena = "2.0.2"
|
||||
|
|
4
crates/vendor/pretty/Cargo.toml
vendored
4
crates/vendor/pretty/Cargo.toml
vendored
|
@ -15,5 +15,5 @@ features = ["termcolor"]
|
|||
|
||||
[dependencies]
|
||||
arrayvec = "0.7.2"
|
||||
typed-arena = "2.0.1"
|
||||
termcolor = { version = "1.1.2", optional = true }
|
||||
typed-arena = "2.0.2"
|
||||
termcolor = { version = "1.2.0", optional = true }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue