Skip to content

Commit

Permalink
Merge pull request bitcoin#1 from Fi3/start
Browse files Browse the repository at this point in the history
start :)
  • Loading branch information
Fi3 authored Feb 15, 2021
2 parents 1f6e9f2 + 77d8064 commit e335e4f
Show file tree
Hide file tree
Showing 24 changed files with 4,027 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
/target
/protocols/guix-example/guix-example.h
/ignore
63 changes: 63 additions & 0 deletions Cargo.lock

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

8 changes: 8 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[workspace]

members = [
# "protocols/v1",
# "protocols/v1/examples/client-and-server",
"protocols/v2/serde-sv2",
]

3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
# stratum
stratum
# STRATUM
18 changes: 18 additions & 0 deletions protocols/v1/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
[package]
name = "v1"
version = "0.1.0"
authors = ["user"]
edition = "2018"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
bitcoin_hashes = "0.3.2"
byteorder = "1.2.7"
hex = "0.3.2"
serde = { version = "1.0.89", features = ["derive"] }
serde_json = "1.0.39"

[dev-dependencies]
quickcheck = "1"
quickcheck_macros = "1"
1 change: 1 addition & 0 deletions protocols/v1/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Stratum V1
14 changes: 14 additions & 0 deletions protocols/v1/examples/client-and-server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
[package]
name = "client_and_server"
version = "0.1.0"
authors = ["user"]
edition = "2018"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
v1={path="../.."}
async-std="1.8.0"
serde = { version = "1.0.89", features = ["derive"] }
serde_json = "1.0.39"
async-channel = "1.5.1"
Loading

0 comments on commit e335e4f

Please sign in to comment.