Skip to content

Commit

Permalink
Initial port commit
Browse files Browse the repository at this point in the history
  • Loading branch information
jfldde committed Sep 30, 2024
1 parent d8a530f commit d3c46ad
Show file tree
Hide file tree
Showing 19 changed files with 2,346 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,8 @@ Cargo.lock
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
# and can be added to the global gitignore or merged into this file. For a more nuclear
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/
#.idea/

# Added by cargo

/target
21 changes: 21 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
[package]
name = "citrea-e2e"
version = "0.1.0"
edition = "2021"

[dependencies]
bollard = { version = "0.17.1" }
bitcoin = { version = "0.32.2", features = ["serde", "rand"] }
bitcoincore-rpc = { version = "0.18.0" }
futures = "0.3"
rand = "0.8"
toml = "0.8.0"
serde = { version = "1.0.192", default-features = false, features = ["alloc", "derive"] }
serde_json = { version = "1.0", default-features = false }
tokio = { version = "1.39", features = ["full"] }
anyhow = { version = "1.0.68", default-features = false, features = ["std"] }
tempfile = "3.8"
async-trait = "0.1.71"

[patch.crates-io]
bitcoincore-rpc = { version = "0.18.0", git = "https://github.com/chainwayxyz/rust-bitcoincore-rpc.git", rev = "0ae498d" }
Loading

0 comments on commit d3c46ad

Please sign in to comment.