Skip to content

Commit

Permalink
chore: update clarity-repl
Browse files Browse the repository at this point in the history
  • Loading branch information
lgalabru committed Jun 25, 2021
1 parent 2690879 commit b59e7d9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ deno_core = { path = "./vendor/deno/core" }
deno_runtime = { path = "./vendor/deno/runtime" }
deno = { path = "./vendor/deno/cli" }
# clarity_repl = { package = "clarity-repl", path = "../../clarity-repl", features = ["cli"] }
clarity_repl = { package = "clarity-repl", version = "=0.13.2" }
clarity_repl = { package = "clarity-repl", version = "=0.13.3" }
bip39 = { version = "1.0.1", default-features = false }
aes = "0.6.0"
base64 = "0.13.0"
Expand Down
1 change: 1 addition & 0 deletions src/test/deno.rs
Original file line number Diff line number Diff line change
Expand Up @@ -743,6 +743,7 @@ fn setup_chain(state: &mut OpState, args: Value, _: ()) -> Result<String, AnyErr
let serialized_contracts = contracts.iter().map(|(a, s)| json!({
"contract_id": a.contract_identifier.to_string(),
"contract_interface": a.contract_interface.clone(),
"dependencies": a.dependencies.clone().into_iter().map(|c| c.to_string()).collect::<Vec<String>>(),
"source": s
})).collect::<Vec<_>>();

Expand Down

0 comments on commit b59e7d9

Please sign in to comment.