Skip to content

Commit b59e7d9

Browse files
committed
chore: update clarity-repl
1 parent 2690879 commit b59e7d9

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ deno_core = { path = "./vendor/deno/core" }
2525
deno_runtime = { path = "./vendor/deno/runtime" }
2626
deno = { path = "./vendor/deno/cli" }
2727
# clarity_repl = { package = "clarity-repl", path = "../../clarity-repl", features = ["cli"] }
28-
clarity_repl = { package = "clarity-repl", version = "=0.13.2" }
28+
clarity_repl = { package = "clarity-repl", version = "=0.13.3" }
2929
bip39 = { version = "1.0.1", default-features = false }
3030
aes = "0.6.0"
3131
base64 = "0.13.0"

src/test/deno.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -743,6 +743,7 @@ fn setup_chain(state: &mut OpState, args: Value, _: ()) -> Result<String, AnyErr
743743
let serialized_contracts = contracts.iter().map(|(a, s)| json!({
744744
"contract_id": a.contract_identifier.to_string(),
745745
"contract_interface": a.contract_interface.clone(),
746+
"dependencies": a.dependencies.clone().into_iter().map(|c| c.to_string()).collect::<Vec<String>>(),
746747
"source": s
747748
})).collect::<Vec<_>>();
748749

0 commit comments

Comments
 (0)