Add the auctioneer bin stub

This commit is contained in:
R Tyler Croy 2019-12-30 07:32:34 -08:00
parent 22d273aa97
commit 0c5e62a26a
No known key found for this signature in database
GPG Key ID: E5C92681BEF6CEA2
4 changed files with 17 additions and 0 deletions

4
Cargo.lock generated
View File

@ -334,6 +334,10 @@ dependencies = [
"winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "auctioneer"
version = "0.1.0"
[[package]]
name = "autocfg"
version = "0.1.7"

View File

@ -1,5 +1,6 @@
[workspace]
members = [
"auctioneer",
"eventbus",
]

9
auctioneer/Cargo.toml Normal file
View File

@ -0,0 +1,9 @@
[package]
name = "auctioneer"
version = "0.1.0"
authors = ["R. Tyler Croy <rtyler@brokenco.de>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

3
auctioneer/src/main.rs Normal file
View File

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