Skip to content

Commit

Permalink
Fixed paths to repos instead of local
Browse files Browse the repository at this point in the history
  • Loading branch information
Cashmaney committed Jan 7, 2023
1 parent 418c98b commit 8bb93d2
Show file tree
Hide file tree
Showing 6 changed files with 126 additions and 99 deletions.
147 changes: 55 additions & 92 deletions cosmwasm/contracts/v1/compute-tests/test-compute-contract/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ backtraces = ["cosmwasm-std/backtraces"]
with_floats = []

[dependencies]
cosmwasm-std = { path = "../../../../../../../CLionProjects/cosmwasm/packages/std", package = "secret-cosmwasm-std" }
cosmwasm-storage = { path = "../../../../../../../CLionProjects/cosmwasm/packages/storage", package = "secret-cosmwasm-storage" }
cosmwasm-std = { package = "secret-cosmwasm-std", version = "1.0.0" }
cosmwasm-storage = { package = "secret-cosmwasm-storage", version = "1.0.0" }
schemars = "0.8.1"
serde = { version = "1.0.114", default-features = false, features = [
"derive",
Expand Down
21 changes: 21 additions & 0 deletions cosmwasm/enclaves/shared/block-verifier/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
[package]
name = "block-verifier"
version = "0.1.0"
edition = "2018"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[target.'cfg(not(target_env = "sgx"))'.dependencies]
sgx_tstd = { rev = "d2d339cbb005f676bb700059bd51dc689c025f6b", git = "https://github.com/apache/teaclave-sgx-sdk.git", features = [
] }
sgx_trts = {rev = "d2d339cbb005f676bb700059bd51dc689c025f6b", git = "https://github.com/apache/teaclave-sgx-sdk.git" }
sgx_types = { rev = "d2d339cbb005f676bb700059bd51dc689c025f6b", git = "https://github.com/apache/teaclave-sgx-sdk.git" }

[dependencies]
tendermint = { git = "https://github.com/scrtlabs/tendermint-rs", branch = "fix-val-set-parsing", default-features = false }
tendermint-proto = { git = "https://github.com/scrtlabs/tendermint-rs", branch = "fix-val-set-parsing", default-features = false }
tendermint-light-client-verifier = { git = "https://github.com/scrtlabs/tendermint-rs", branch = "fix-val-set-parsing", default-features = false }
lazy_static = "1.4.0"
log = "0.4.17"

enclave_crypto = {path ="../crypto"}
enclave_utils = {path ="../utils"}
Loading

0 comments on commit 8bb93d2

Please sign in to comment.