Skip to content

Commit 8a37329

Browse files
authored
Use exact version for local deps. (#490)
1 parent 90c9b56 commit 8a37329

File tree

10 files changed

+32
-32
lines changed

10 files changed

+32
-32
lines changed

Cargo.lock

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docstrings/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "docstrings"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
edition = "2021"
55
publish = false
66

forc/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "forc"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
authors = ["Fuel Labs <[email protected]>"]
55
edition = "2018"
66
homepage = "https://fuel.network/"
@@ -20,19 +20,19 @@ fuel-tx = "0.1"
2020
fuel-vm = "0.1"
2121
futures = "0.3"
2222
hex = "0.4.3"
23-
pest = {version = "3.0", package = "fuel-pest" }
23+
pest = { version = "3.0", package = "fuel-pest" }
2424
prettydiff = "0.4.0"
2525
reqwest = { version = "0.11.4", features = ["json"] }
2626
semver = "1.0.3"
2727
serde = {version = "1.0", features = ["derive"]}
2828
serde_json = "*"
2929
source-span = "2.4"
3030
structopt = "0.3"
31-
sway-core = { version = "0.1", path = "../sway-core" }
32-
sway-fmt = { version = "0.1", path = "../sway-fmt" }
33-
sway-server = { version = "0.1", path = "../sway-server" }
34-
sway-utils = { version = "0.1", path = "../sway-utils" }
35-
sway-types = { version = "0.1", path = "../sway-types" }
31+
sway-core = { version = "0.1.1", path = "../sway-core" }
32+
sway-fmt = { version = "0.1.1", path = "../sway-fmt" }
33+
sway-server = { version = "0.1.1", path = "../sway-server" }
34+
sway-utils = { version = "0.1.1", path = "../sway-utils" }
35+
sway-types = { version = "0.1.1", path = "../sway-types" }
3636
tar = "0.4.35"
3737
term-table = "1.3"
3838
termcolor = "1.1"

parser/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "parser"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
edition = "2021"
55
publish = false
66

sway-core/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sway-core"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
authors = ["Fuel Labs <[email protected]>"]
55
edition = "2018"
66
homepage = "https://fuel.network/"
@@ -19,14 +19,14 @@ fuel-vm = "0.1"
1919
hex = { version = "0.4", optional = true }
2020
lazy_static = "1.4"
2121
line-col = "0.2"
22-
pest = {version = "3.0", package = "fuel-pest" }
22+
pest = { version = "3.0", package = "fuel-pest" }
2323
pest_derive = "2.0"
2424
petgraph = "0.5"
2525
sha2 = "0.9"
2626
smallvec = "1.7"
2727
source-span = "2.4"
2828
structopt = { version = "0.3", default-features = false, optional = true }
29-
sway-types = { version = "0.1", path = "../sway-types" }
29+
sway-types = { version = "0.1.1", path = "../sway-types" }
3030
thiserror = "1.0"
3131
uuid-b64 = "0.1"
3232

sway-fmt/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sway-fmt"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
authors = ["Fuel Labs <[email protected]>"]
55
edition = "2018"
66
homepage = "https://fuel.network/"
@@ -10,4 +10,4 @@ description = "Sway sway-fmt."
1010

1111
[dependencies]
1212
ropey = "1.2"
13-
sway-core = { version = "0.1", path = "../sway-core" }
13+
sway-core = { version = "0.1.1", path = "../sway-core" }

sway-server/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sway-server"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
authors = ["Fuel Labs <[email protected]>"]
55
edition = "2018"
66
homepage = "https://fuel.network/"
@@ -11,10 +11,10 @@ description = "LSP server for Sway."
1111
[dependencies]
1212
dashmap = "4.0.2"
1313
lspower = "1.0.0"
14-
pest = {version = "3.0", package = "fuel-pest" }
14+
pest = { version = "3.0", package = "fuel-pest" }
1515
ropey = "1.2"
1616
serde_json = "1.0.60"
17-
sway-core = { version = "0.1", path = "../sway-core" }
18-
sway-fmt = { version = "0.1", path = "../sway-fmt" }
19-
sway-utils = { version = "0.1", path = "../sway-utils" }
17+
sway-core = { version = "0.1.1", path = "../sway-core" }
18+
sway-fmt = { version = "0.1.1", path = "../sway-fmt" }
19+
sway-utils = { version = "0.1.1", path = "../sway-utils" }
2020
tokio = { version = "1.3", features = ["io-std", "io-util", "macros", "net", "rt-multi-thread", "sync", "time"] }

sway-types/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sway-types"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
authors = ["Fuel Labs <[email protected]>"]
55
edition = "2018"
66
homepage = "https://fuel.network/"

sway-utils/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sway-utils"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
authors = ["Fuel Labs <[email protected]>"]
55
edition = "2021"
66
homepage = "https://fuel.network/"

test/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "test"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
authors = ["Fuel Labs <[email protected]>"]
55
edition = "2018"
66
publish = false
77

88
[dependencies]
9-
forc = { path = "../forc", features = ["test"], default-features = false }
9+
forc = { version = "0.1.1", path = "../forc", features = ["test"], default-features = false }
1010
fuel-asm = "0.1"
1111
fuel-tx = "0.1"
1212
fuel-vm = { version = "0.1", features = ["random"] }

0 commit comments

Comments
 (0)