diff --git a/Cargo.lock b/Cargo.lock index 6505058b1d4..65e036189df 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -915,7 +915,7 @@ checksum = "212d0f5754cb6769937f4501cc0e67f4f4483c8d2c3e1e922ee9edbe4ab4c7c0" [[package]] name = "docstrings" -version = "0.1.2" +version = "0.1.3" dependencies = [ "thiserror", ] @@ -1020,7 +1020,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "forc" -version = "0.1.2" +version = "0.1.3" dependencies = [ "annotate-snippets", "anyhow", @@ -2008,7 +2008,7 @@ checksum = "427c3892f9e783d91cc128285287e70a59e206ca452770ece88a76f7a3eddd72" [[package]] name = "parser" -version = "0.1.2" +version = "0.1.3" dependencies = [ "ariadne", "chumsky", @@ -2940,7 +2940,7 @@ dependencies = [ [[package]] name = "sway-core" -version = "0.1.2" +version = "0.1.3" dependencies = [ "derivative", "either", @@ -2963,7 +2963,7 @@ dependencies = [ [[package]] name = "sway-fmt" -version = "0.1.2" +version = "0.1.3" dependencies = [ "ropey", "sway-core", @@ -2971,7 +2971,7 @@ dependencies = [ [[package]] name = "sway-server" -version = "0.1.2" +version = "0.1.3" dependencies = [ "dashmap", "fuel-pest", @@ -2986,7 +2986,7 @@ dependencies = [ [[package]] name = "sway-types" -version = "0.1.2" +version = "0.1.3" dependencies = [ "fuel-asm", "fuel-tx", @@ -2995,7 +2995,7 @@ dependencies = [ [[package]] name = "sway-utils" -version = "0.1.2" +version = "0.1.3" [[package]] name = "syn" @@ -3089,7 +3089,7 @@ dependencies = [ [[package]] name = "test" -version = "0.1.2" +version = "0.1.3" dependencies = [ "forc", "fuel-asm", diff --git a/docstrings/Cargo.toml b/docstrings/Cargo.toml index 7477b6f08d3..db6ec077a0a 100644 --- a/docstrings/Cargo.toml +++ b/docstrings/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "docstrings" -version = "0.1.2" +version = "0.1.3" edition = "2021" publish = false diff --git a/forc/Cargo.toml b/forc/Cargo.toml index 62798d4c4b6..1e82e60c739 100644 --- a/forc/Cargo.toml +++ b/forc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "forc" -version = "0.1.2" +version = "0.1.3" authors = ["Fuel Labs "] edition = "2018" homepage = "https://fuel.network/" @@ -25,14 +25,14 @@ prettydiff = "0.4.0" reqwest = { version = "0.11.4", features = ["json"] } semver = "1.0.3" serde = {version = "1.0", features = ["derive"]} -serde_json = "*" +serde_json = "1.0.73" source-span = "2.4" structopt = "0.3" -sway-core = { version = "0.1.2", path = "../sway-core" } -sway-fmt = { version = "0.1.2", path = "../sway-fmt" } -sway-server = { version = "0.1.2", path = "../sway-server" } -sway-utils = { version = "0.1.2", path = "../sway-utils" } -sway-types = { version = "0.1.2", path = "../sway-types" } +sway-core = { version = "0.1.3", path = "../sway-core" } +sway-fmt = { version = "0.1.3", path = "../sway-fmt" } +sway-server = { version = "0.1.3", path = "../sway-server" } +sway-utils = { version = "0.1.3", path = "../sway-utils" } +sway-types = { version = "0.1.3", path = "../sway-types" } tar = "0.4.35" term-table = "1.3" termcolor = "1.1" diff --git a/parser/Cargo.toml b/parser/Cargo.toml index 9a6e2b5f37f..b5f10e4cb0e 100644 --- a/parser/Cargo.toml +++ b/parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "parser" -version = "0.1.2" +version = "0.1.3" edition = "2021" publish = false diff --git a/sway-core/Cargo.toml b/sway-core/Cargo.toml index cd8932c3028..cfb7dc82327 100644 --- a/sway-core/Cargo.toml +++ b/sway-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sway-core" -version = "0.1.2" +version = "0.1.3" authors = ["Fuel Labs "] edition = "2018" homepage = "https://fuel.network/" @@ -26,7 +26,7 @@ sha2 = "0.9" smallvec = "1.7" source-span = "2.4" structopt = { version = "0.3", default-features = false, optional = true } -sway-types = { version = "0.1.2", path = "../sway-types" } +sway-types = { version = "0.1.3", path = "../sway-types" } thiserror = "1.0" uuid-b64 = "0.1" diff --git a/sway-fmt/Cargo.toml b/sway-fmt/Cargo.toml index 13c82e2f0c8..3bace696a9e 100644 --- a/sway-fmt/Cargo.toml +++ b/sway-fmt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sway-fmt" -version = "0.1.2" +version = "0.1.3" authors = ["Fuel Labs "] edition = "2018" homepage = "https://fuel.network/" @@ -10,4 +10,4 @@ description = "Sway sway-fmt." [dependencies] ropey = "1.2" -sway-core = { version = "0.1.2", path = "../sway-core" } +sway-core = { version = "0.1.3", path = "../sway-core" } diff --git a/sway-server/Cargo.toml b/sway-server/Cargo.toml index f585805536e..539237909c0 100644 --- a/sway-server/Cargo.toml +++ b/sway-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sway-server" -version = "0.1.2" +version = "0.1.3" authors = ["Fuel Labs "] edition = "2018" homepage = "https://fuel.network/" @@ -14,7 +14,7 @@ lspower = "1.0.0" pest = { version = "3.0", package = "fuel-pest" } ropey = "1.2" serde_json = "1.0.60" -sway-core = { version = "0.1.2", path = "../sway-core" } -sway-fmt = { version = "0.1.2", path = "../sway-fmt" } -sway-utils = { version = "0.1.2", path = "../sway-utils" } +sway-core = { version = "0.1.3", path = "../sway-core" } +sway-fmt = { version = "0.1.3", path = "../sway-fmt" } +sway-utils = { version = "0.1.3", path = "../sway-utils" } tokio = { version = "1.3", features = ["io-std", "io-util", "macros", "net", "rt-multi-thread", "sync", "time"] } diff --git a/sway-types/Cargo.toml b/sway-types/Cargo.toml index fa73bc2ef9a..0d333fae40b 100644 --- a/sway-types/Cargo.toml +++ b/sway-types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sway-types" -version = "0.1.2" +version = "0.1.3" authors = ["Fuel Labs "] edition = "2018" homepage = "https://fuel.network/" diff --git a/sway-utils/Cargo.toml b/sway-utils/Cargo.toml index 733db41895d..494c9b499cf 100644 --- a/sway-utils/Cargo.toml +++ b/sway-utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sway-utils" -version = "0.1.2" +version = "0.1.3" authors = ["Fuel Labs "] edition = "2021" homepage = "https://fuel.network/" diff --git a/test/Cargo.toml b/test/Cargo.toml index 1d1679fc255..e93d6452815 100644 --- a/test/Cargo.toml +++ b/test/Cargo.toml @@ -1,16 +1,16 @@ [package] name = "test" -version = "0.1.2" +version = "0.1.3" authors = ["Fuel Labs "] edition = "2018" publish = false [dependencies] -forc = { version = "0.1.2", path = "../forc", features = ["test"], default-features = false } +forc = { version = "0.1.3", path = "../forc", features = ["test"], default-features = false } fuel-asm = "0.1" fuel-tx = "0.1" fuel-vm = { version = "0.1", features = ["random"] } rand = "0.8" regex = "1" tokio = "1.12" -serde_json = "*" +serde_json = "1.0.73"