Split project into library & binary
continuous-integration/drone the build failed
Details
continuous-integration/drone the build failed
Details
parent
02fe8d2de7
commit
4faf19aae5
16
Cargo.toml
16
Cargo.toml
|
@ -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"
|
||||
|
|
Reference in New Issue