initialize

This commit is contained in:
open-trade 2020-03-04 14:10:58 +08:00
commit d188a5f5ea
5 changed files with 22 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
/target
**/*.rs.bk

3
.gitmodules vendored Normal file
View File

@ -0,0 +1,3 @@
[submodule "libs/p2p"]
path = libs/p2p
url = https://github.com/open-trade/p2p

13
Cargo.toml Normal file
View File

@ -0,0 +1,13 @@
[package]
name = "hbbs"
version = "0.1.0"
authors = ["open-trade <info@opentradesolutions.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
p2p = { path = "libs/p2p" }
[workspace]
members = ["libs/p2p"]

1
libs/p2p Submodule

@ -0,0 +1 @@
Subproject commit 24cffa9777c7984a4e78e933e78507e63e5527d2

3
src/main.rs Normal file
View File

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}