added binaries
This commit is contained in:
parent
4465770b8f
commit
c7e1000018
12
Cargo.lock
generated
12
Cargo.lock
generated
@ -1,5 +1,17 @@
|
||||
# This file is automatically @generated by Cargo.
|
||||
# It is not intended for manual editing.
|
||||
[[package]]
|
||||
name = "farm"
|
||||
version = "0.1.0"
|
||||
|
||||
[[package]]
|
||||
name = "node"
|
||||
version = "0.1.0"
|
||||
|
||||
[[package]]
|
||||
name = "plot"
|
||||
version = "0.1.0"
|
||||
|
||||
[[package]]
|
||||
name = "wallet"
|
||||
version = "0.1.0"
|
||||
|
@ -2,4 +2,7 @@
|
||||
|
||||
members = [
|
||||
"plot",
|
||||
]
|
||||
"farm",
|
||||
"wallet",
|
||||
"node",
|
||||
]
|
||||
|
9
farm/Cargo.toml
Normal file
9
farm/Cargo.toml
Normal file
@ -0,0 +1,9 @@
|
||||
[package]
|
||||
name = "farm"
|
||||
version = "0.1.0"
|
||||
authors = ["Jake Hillion <jake@hillion.co.uk>"]
|
||||
edition = "2018"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
3
farm/src/main.rs
Normal file
3
farm/src/main.rs
Normal file
@ -0,0 +1,3 @@
|
||||
fn main() {
|
||||
println!("Hello, world!");
|
||||
}
|
9
node/Cargo.toml
Normal file
9
node/Cargo.toml
Normal file
@ -0,0 +1,9 @@
|
||||
[package]
|
||||
name = "node"
|
||||
version = "0.1.0"
|
||||
authors = ["Jake Hillion <jake@hillion.co.uk>"]
|
||||
edition = "2018"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
3
node/src/main.rs
Normal file
3
node/src/main.rs
Normal file
@ -0,0 +1,3 @@
|
||||
fn main() {
|
||||
println!("Hello, world!");
|
||||
}
|
9
wallet/Cargo.toml
Normal file
9
wallet/Cargo.toml
Normal file
@ -0,0 +1,9 @@
|
||||
[package]
|
||||
name = "wallet"
|
||||
version = "0.1.0"
|
||||
authors = ["Jake Hillion <jake@hillion.co.uk>"]
|
||||
edition = "2018"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
3
wallet/src/main.rs
Normal file
3
wallet/src/main.rs
Normal file
@ -0,0 +1,3 @@
|
||||
fn main() {
|
||||
println!("Hello, world!");
|
||||
}
|
Loading…
Reference in New Issue
Block a user