Skip to content

Commit

Permalink
Upgrade dependencies and fix site editor
Browse files Browse the repository at this point in the history
  • Loading branch information
udoprog committed May 11, 2023
1 parent 88163e2 commit 4be2142
Show file tree
Hide file tree
Showing 14 changed files with 800 additions and 251 deletions.
2 changes: 1 addition & 1 deletion benches/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ publish = false
[dependencies]
rune = { path = "../crates/rune", features = ["bench", "capture-io"] }

tokio = { version = "1.28.0", features = ["macros"] }
tokio = { version = "1.28.1", features = ["macros"] }
criterion = "0.4.0"
anyhow = "1.0.71"
futures-executor = "0.3.28"
Expand Down
2 changes: 1 addition & 1 deletion crates/rune-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ std = []

[dependencies]
twox-hash = { version = "1.6.3", default-features = false }
serde = { version = "1.0.162", default-features = false, features = ["derive", "alloc"] }
serde = { version = "1.0.163", default-features = false, features = ["derive", "alloc"] }
smallvec = { version = "1.10.0", default-features = false, features = ["const_new", "serde"] }
byteorder = { version = "1.4.3", default-features = false }

Expand Down
2 changes: 1 addition & 1 deletion crates/rune-languageserver/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ keywords = ["language", "scripting", "scripting-language"]
categories = ["parser-implementations"]

[dependencies]
tokio = { version = "1.28.0", features = ["full"] }
tokio = { version = "1.28.1", features = ["full"] }
anyhow = "1.0.71"
tracing = "0.1.37"
tracing-appender = "0.2.2"
Expand Down
2 changes: 1 addition & 1 deletion crates/rune-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ categories = ["parser-implementations"]
[dependencies]
rune-core = { version = "=0.12.3", path = "../rune-core" }
syn = { version = "2.0.15", features = ["full"] }
quote = "1.0.26"
quote = "1.0.27"
proc-macro2 = { version = "1.0.56", features = ["span-locations"] }

[lib]
Expand Down
2 changes: 1 addition & 1 deletion crates/rune-modules/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ fmt = []

[dependencies]
reqwest = { version = "0.11.17", optional = true, default-features = false, features = ["rustls-tls", "gzip", "json"] }
tokio = { version = "1.28.0", optional = true }
tokio = { version = "1.28.1", optional = true }
serde_json = { version = "1.0.96", optional = true }
toml = { version = "0.7.3", optional = true }
nanorand = { version = "0.7.0", optional = true, features = ["getrandom"] }
Expand Down
10 changes: 5 additions & 5 deletions crates/rune-wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ rune = { version = "0.12.3", path = "../rune", features = ["capture-io"] }
rune-macros = { version = "=0.12.3", path = "../rune-macros" }
rune-modules = { version = "0.12.3", path = "../rune-modules", features = ["core", "test", "json", "toml", "rand", "experiments"] }

serde = { version = "1.0.162", features = ["derive"] }
wasm-bindgen = { version = "0.2.84", features = ["serde-serialize"] }
wasm-bindgen-futures = "0.4.34"
js-sys = "0.3.61"
serde = { version = "1.0.163", features = ["derive"] }
wasm-bindgen = { version = "0.2.85", features = ["serde-serialize"] }
wasm-bindgen-futures = "0.4.35"
js-sys = "0.3.62"
anyhow = "1.0.71"
gloo-utils = "0.1.6"

[dependencies.web-sys]
version = "0.3.61"
version = "0.3.62"
features = ["Request", "Response", "Window", "RequestInit", "RequestMode"]

[lib]
Expand Down
Loading

0 comments on commit 4be2142

Please sign in to comment.