Split project into library & binary
continuous-integration/drone the build failed Details

the-beginning
Jef Roosens 2021-06-28 13:52:08 +02:00
parent 02fe8d2de7
commit 4faf19aae5
Signed by: Jef Roosens
GPG Key ID: B580B976584B5F30
3 changed files with 15 additions and 1 deletions

View File

@ -4,7 +4,21 @@ version = "0.1.0"
authors = ["Jef Roosens <roosensjef@gmail.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "libhilde"
path = "src/libhilde/lib.rs"
test = true
bench = true
doc = true
doctest = true
[[bin]]
name = "hilde"
path = "src/hilde/main.rs"
test = true
bench = true
doc = true
doctest = true
[dependencies]
rocket = "0.5.0-rc.1"

View File