open-trade лет назад: 6
Сommit
d188a5f5ea
5 измененных файлов с 22 добавлено и 0 удалено
  1. 2 0
      .gitignore
  2. 3 0
      .gitmodules
  3. 13 0
      Cargo.toml
  4. 1 0
      libs/p2p
  5. 3 0
      src/main.rs

+ 2 - 0
.gitignore

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

+ 3 - 0
.gitmodules

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

+ 13 - 0
Cargo.toml

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

+ 1 - 0
libs/p2p

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

+ 3 - 0
src/main.rs

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