Browse Source

Create cargo workspace and cfd_protocol crate

bdk-0.11
Lucas Soriano del Pino 3 years ago
committed by Philipp Hoenisch
parent
commit
20c6635c78
No known key found for this signature in database GPG Key ID: E5F8E74C672BC666
  1. 2
      Cargo.toml
  2. 10
      cfd_protocol/Cargo.toml
  3. 5
      cfd_protocol/src/lib.rs

2
Cargo.toml

@ -0,0 +1,2 @@
[workspace]
members = [ "cfd_protocol" ]

10
cfd_protocol/Cargo.toml

@ -0,0 +1,10 @@
[package]
name = "cfd_protocol"
version = "0.1.0"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
dlc = { git = "https://github.com/p2pderivatives/rust-dlc" }

5
cfd_protocol/src/lib.rs

@ -0,0 +1,5 @@
#[cfg(test)]
mod tests {
#[test]
fn it_works() {}
}
Loading…
Cancel
Save