Skip to content

Commit 40e8a0a

Browse files
committed
Add the meat to the library. It compiles.
1 parent 408997d commit 40e8a0a

File tree

6 files changed

+593
-22
lines changed

6 files changed

+593
-22
lines changed

.github/workflows/ci.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,12 @@ jobs:
4646
build_test:
4747
strategy:
4848
matrix:
49-
rust_toolchain: [stable, beta, nightly]
49+
rust_toolchain: [stable, beta]
50+
continue_on_error: [false]
51+
include:
52+
- rust_toolchain: nightly
53+
continue_on_error: true
54+
continue-on-error: ${{ matrix.continue_on_error }}
5055
runs-on: ubuntu-latest
5156
steps:
5257
- name: Checkout sources

Cargo.toml

+9-2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ authors = ["CoBloX Team <[email protected]>"]
55
edition = "2018"
66

77
[dependencies]
8+
bitcoin = { version = "0.23", features = ["use-serde"] }
9+
futures = "0.3.5"
10+
reqwest = { version = "0.10", default-features = false, features = ["json", "native-tls"] }
11+
serde = "1.0"
12+
serde_json = "1.0"
813
testcontainers = "0.9"
9-
bitcoincore-rpc = "0.11"
10-
url = "2.1"
14+
thiserror = "1.0"
15+
tokio = { version = "0.2", default-features = false, features = ["blocking", "macros", "rt-core", "time"] }
16+
tracing = "0.1"
17+
url = "2"

bors.toml

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
status = [
2+
"static_analysis",
3+
"build_test (stable, false)",
4+
"build_test (beta, false)",
5+
]

0 commit comments

Comments
 (0)