diff --git a/Cargo.lock b/Cargo.lock index 97cf3008d..c2d702756 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -950,7 +950,7 @@ dependencies = [ [[package]] name = "cairo-native" -version = "0.2.0" +version = "0.2.0-alpha.1" dependencies = [ "anyhow", "aquamarine", @@ -1011,7 +1011,7 @@ dependencies = [ [[package]] name = "cairo-native-runtime" -version = "0.2.0" +version = "0.2.0-alpha.1" dependencies = [ "cairo-lang-sierra-gas", "lazy_static", @@ -3240,7 +3240,8 @@ dependencies = [ [[package]] name = "scarb-metadata" version = "1.12.0" -source = "git+https://github.com/software-mansion/scarb.git?rev=v2.8.2#a37b4cbfc9d7560e4d1375a3b1707c165aedd22a" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "170ebce1774a85568646ba4096827f898306665187eebd9282fee313e316518d" dependencies = [ "camino", "semver", @@ -3252,7 +3253,8 @@ dependencies = [ [[package]] name = "scarb-ui" version = "0.1.5" -source = "git+https://github.com/software-mansion/scarb.git?rev=v2.8.2#a37b4cbfc9d7560e4d1375a3b1707c165aedd22a" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "19e63037ffa17459b3c07e385498d48fbf9b329e43a93f6c4a751845441fee33" dependencies = [ "anyhow", "camino", diff --git a/Cargo.toml b/Cargo.toml index 7e63c406f..ddfe64b6c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cairo-native" -version = "0.2.0" +version = "0.2.0-alpha.1" edition = "2021" license = "Apache-2.0" description = "A compiler to convert Cairo's intermediate representation Sierra code to MLIR." @@ -93,7 +93,7 @@ cairo-lang-sierra-gas = "2.8.2" cairo-lang-starknet = "2.8.2" cairo-lang-utils = "2.8.2" cairo-lang-starknet-classes = "2.8.2" -cairo-native-runtime = { version = "0.2.0", path = "runtime", optional = true } +cairo-native-runtime = { version = "0.2.0-alpha.1", path = "runtime", optional = true } clap = { version = "4.5.18", features = ["derive"], optional = true } libloading = "0.8.3" tracing-subscriber = { version = "0.3.18", features = [ @@ -110,9 +110,9 @@ colored = { version = "2.1.0", optional = true } keccak = "0.1.5" k256 = "0.13.4" p256 = "0.13.2" -sha2 = "0.10.8" # needed for the syscall handler stub -scarb-metadata = { git = "https://github.com/software-mansion/scarb.git", rev = "v2.8.2", optional = true } -scarb-ui = { git = "https://github.com/software-mansion/scarb.git", rev = "v2.8.2", optional = true } +sha2 = "0.10.8" # needed for the syscall handler stub +scarb-metadata = { version = "1.12.0", optional = true } +scarb-ui = { version = "0.1.5", optional = true } sec1 = "0.7.3" serde_json = { version = "1.0.125" } stats_alloc = "0.1.10" diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index 988a09f5d..f6ec2438b 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cairo-native-runtime" -version = "0.2.0" +version = "0.2.0-alpha.1" description = "A compiler to convert Cairo's intermediate representation Sierra code to MLIR." edition = "2021" license = "Apache-2.0"