Skip to content

Commit

Permalink
Fix WASM issue, update to 0.5.38
Browse files Browse the repository at this point in the history
  • Loading branch information
willcrichton committed Aug 8, 2023
1 parent 782bbc6 commit 3f6cb7f
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions crates/flowistry/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "flowistry"
version = "0.5.37"
version = "0.5.38"
edition = "2021"
authors = ["Will Crichton <wcrichto@cs.stanford.edu>"]
description = "Modular information flow analysis"
Expand All @@ -20,7 +20,7 @@ log = "0.4"
fluid-let = "1.0"
cfg-if = "1.0"
serde = {version = "1", features = ["derive"]}
rustc_utils = "0.6.1-nightly-2023-04-12"
rustc_utils = "0.6.2-nightly-2023-04-12"

# For local debugging
html-escape = {version = "0.2", optional = true}
Expand Down
8 changes: 4 additions & 4 deletions crates/flowistry_ide/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "flowistry_ide"
version = "0.5.37"
version = "0.5.38"
edition = "2021"
authors = ["Will Crichton <wcrichto@cs.stanford.edu>"]
description = "Information Flow in the IDE for Rust"
Expand All @@ -14,7 +14,7 @@ rustc_private = true
decompose = ["petgraph", "rayon"]

[dependencies]
flowistry = {version = "0.5.37", path = "../flowistry"}
flowistry = {version = "0.5.38", path = "../flowistry"}
anyhow = "1"
log = "0.4"
fluid-let = "1.0"
Expand All @@ -24,8 +24,8 @@ serde = {version = "1", features = ["derive"]}
serde_json = "1"
flate2 = "1"
base64 = "0.21"
rustc_utils = {version = "0.6.1-nightly-2023-04-12", features = ["serde"]}
rustc_plugin = "0.6.1-nightly-2023-04-12"
rustc_utils = {version = "0.6.2-nightly-2023-04-12", features = ["serde"]}
rustc_plugin = "0.6.2-nightly-2023-04-12"

# Decompose
petgraph = {version = "0.6", default-features = false, optional = true}
Expand Down
8 changes: 4 additions & 4 deletions crates/flowistry_ifc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
[package]
name = "flowistry_ifc"
version = "0.5.37"
version = "0.5.38"
edition = "2021"
publish = false

[package.metadata.rust-analyzer]
rustc_private = true

[dependencies]
flowistry = {version = "0.5.37", path = "../flowistry"}
flowistry = {version = "0.5.38", path = "../flowistry"}
env_logger = "0.9"
termcolor = "1.1"
anyhow = "1"
log = "0.4"
rustc_plugin = "0.6.1-nightly-2023-04-12"
rustc_utils = "0.6.1-nightly-2023-04-12"
rustc_plugin = "0.6.2-nightly-2023-04-12"
rustc_utils = "0.6.2-nightly-2023-04-12"
2 changes: 1 addition & 1 deletion crates/flowistry_ifc_traits/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "flowistry_ifc_traits"
version = "0.5.37"
version = "0.5.38"
edition = "2021"
publish = false

Expand Down
2 changes: 1 addition & 1 deletion ide/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"type": "git"
},
"description": "Information Flow in the IDE for Rust",
"version": "0.5.37",
"version": "0.5.38",
"engines": {
"vscode": "^1.54.0"
},
Expand Down

0 comments on commit 3f6cb7f

Please sign in to comment.