Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions Cargo-minimal.lock
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,10 @@ version = "2.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8f68f53c83ab957f72c32642f3868eec03eb974d1fb82e453128456482613d36"

[[package]]
name = "bitreq"
version = "0.0.0"

[[package]]
name = "byteorder"
version = "1.5.0"
Expand Down
4 changes: 4 additions & 0 deletions Cargo-recent.lock
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,10 @@ version = "2.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8f68f53c83ab957f72c32642f3868eec03eb974d1fb82e453128456482613d36"

[[package]]
name = "bitreq"
version = "0.0.0"

[[package]]
name = "byteorder"
version = "1.5.0"
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[workspace]
members = ["client", "jsonrpc", "node", "types"]
members = [ "bitreq", "client", "jsonrpc", "node", "types"]
exclude = ["integration_test", "verify"]
resolver = "2"

Expand Down
3 changes: 3 additions & 0 deletions bitreq/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# 2025-10-21 - 0.0.0

Grabbing the name on crates.io.
15 changes: 15 additions & 0 deletions bitreq/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
[package]
name = "bitreq"
version = "0.0.0"
authors = ["Tobin C. Harding <me@tobin.cc>"]
description = "Simple, minimal-dependency HTTP client"
documentation = "https://docs.rs/bitreq"
repository = "https://github.com/rust-bitcoin/corepc"
readme = "README.md"
keywords = ["http", "https", "client", "request", "json"]
categories = ["web-programming::http-client"]
license = "ISC"
edition = "2021"
rust-version = "1.74.0"

[dependencies]
3 changes: 3 additions & 0 deletions bitreq/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# bitreq

Minimal dependency HTTP crate.
3 changes: 3 additions & 0 deletions bitreq/src/main.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}