Switch to published packages rather than straight git paths.
We can do this now that all our dependencies are available in published form, and this should reduce accidental breakage which APIs change.
This commit is contained in:
12
Cargo.toml
12
Cargo.toml
@@ -17,11 +17,11 @@ name = "wasm2obj"
|
|||||||
path = "src/wasm2obj.rs"
|
path = "src/wasm2obj.rs"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
cretonne = { git = "https://github.com/stoklund/cretonne.git" }
|
cretonne = "0.3.0"
|
||||||
cretonne-frontend = { git = "https://github.com/stoklund/cretonne.git" }
|
cretonne-frontend = "0.3.0"
|
||||||
cretonne-reader = { git = "https://github.com/stoklund/cretonne.git" }
|
cretonne-reader = "0.3.0"
|
||||||
cretonne-wasm = { git = "https://github.com/stoklund/cretonne.git" }
|
cretonne-wasm = "0.3.0"
|
||||||
cretonne-native = { git = "https://github.com/stoklund/cretonne.git" }
|
cretonne-native = "0.3.0"
|
||||||
wasmstandalone_runtime = { path = "lib/runtime" }
|
wasmstandalone_runtime = { path = "lib/runtime" }
|
||||||
wasmstandalone_execute = { path = "lib/execute" }
|
wasmstandalone_execute = { path = "lib/execute" }
|
||||||
wasmstandalone_obj = { path = "lib/obj" }
|
wasmstandalone_obj = { path = "lib/obj" }
|
||||||
@@ -29,6 +29,6 @@ docopt = "0.8.3"
|
|||||||
serde = "1.0.27"
|
serde = "1.0.27"
|
||||||
serde_derive = "1.0.27"
|
serde_derive = "1.0.27"
|
||||||
tempdir = "*"
|
tempdir = "*"
|
||||||
faerie = { git = "https://github.com/m4b/faerie" }
|
faerie = "0.1.0"
|
||||||
|
|
||||||
[workspace]
|
[workspace]
|
||||||
|
|||||||
@@ -14,13 +14,13 @@ path = "../lib/runtime"
|
|||||||
path = "../lib/execute"
|
path = "../lib/execute"
|
||||||
|
|
||||||
[dependencies.cretonne]
|
[dependencies.cretonne]
|
||||||
git = "https://github.com/stoklund/cretonne.git"
|
version = "0.3.0"
|
||||||
|
|
||||||
[dependencies.cretonne-wasm]
|
[dependencies.cretonne-wasm]
|
||||||
git = "https://github.com/stoklund/cretonne.git"
|
version = "0.3.0"
|
||||||
|
|
||||||
[dependencies.cretonne-native]
|
[dependencies.cretonne-native]
|
||||||
git = "https://github.com/stoklund/cretonne.git"
|
version = "0.3.0"
|
||||||
|
|
||||||
[dependencies.libfuzzer-sys]
|
[dependencies.libfuzzer-sys]
|
||||||
git = "https://github.com/rust-fuzz/libfuzzer-sys.git"
|
git = "https://github.com/rust-fuzz/libfuzzer-sys.git"
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ repository = "https://github.com/sunfishcode/wasmstandalone"
|
|||||||
license = "MIT/Apache-2.0"
|
license = "MIT/Apache-2.0"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
cretonne = { git = "https://github.com/stoklund/cretonne.git" }
|
cretonne = "0.3.0"
|
||||||
cretonne-wasm = { git = "https://github.com/stoklund/cretonne.git" }
|
cretonne-wasm = "0.3.0"
|
||||||
region = "0.1.1"
|
region = "0.1.1"
|
||||||
wasmstandalone_runtime = { path = "../runtime" }
|
wasmstandalone_runtime = { path = "../runtime" }
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ authors = ["The Cretonne Project Developers"]
|
|||||||
publish = false
|
publish = false
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
cretonne = { git = "https://github.com/stoklund/cretonne.git" }
|
cretonne = "0.3.0"
|
||||||
cretonne-wasm = { git = "https://github.com/stoklund/cretonne.git" }
|
cretonne-wasm = "0.3.0"
|
||||||
wasmstandalone_runtime = { path = "../runtime" }
|
wasmstandalone_runtime = { path = "../runtime" }
|
||||||
faerie = { git = "https://github.com/m4b/faerie" }
|
faerie = "0.1.0"
|
||||||
|
|||||||
@@ -8,6 +8,6 @@ repository = "https://github.com/sunfishcode/wasmstandalone"
|
|||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
cretonne = { git = "https://github.com/stoklund/cretonne.git" }
|
cretonne = "0.3.0"
|
||||||
cretonne-wasm = { git = "https://github.com/stoklund/cretonne.git" }
|
cretonne-wasm = "0.3.0"
|
||||||
wasmparser = "0.14.1"
|
wasmparser = "0.14.1"
|
||||||
|
|||||||
Reference in New Issue
Block a user