Skip to content
This repository has been archived by the owner on Aug 28, 2024. It is now read-only.

Commit

Permalink
feat(btc-client): add example directory and binary for integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
irnb committed Jul 16, 2024
1 parent b121f3d commit 42ac886
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 1 deletion.
7 changes: 7 additions & 0 deletions Cargo.lock

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

14 changes: 13 additions & 1 deletion core/lib/via_btc_client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,24 @@ name = "via_btc_client"
description = "Via Network Bitcoin Inscription Standard Implementation"
version.workspace = true
edition.workspace = true
authors.workspace = true
authors = ["Via Network"]
homepage.workspace = true
repository.workspace = true
license.workspace = true
keywords.workspace = true
categories.workspace = true

[[bin]]
name = "via_btc_example"
path = "examples/main.rs"

[dependencies]
zksync_types.workspace = true
zksync_config.workspace = true

thiserror.workspace = true
async-trait.workspace = true
jsonrpsee = { workspace = true, features = [
"client",
"macros",
] }
4 changes: 4 additions & 0 deletions core/lib/via_btc_client/examples/main.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@

fn main () {
println!("Hello, world!");
}

0 comments on commit 42ac886

Please sign in to comment.