firmware: use main.rs as the root source for non-library crates. NFC.

This commit is contained in:
whitequark 2017-12-28 08:16:44 +00:00
parent 1b9b560242
commit fcc438524c
4 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@ build = "build.rs"
[lib] [lib]
name = "runtime" name = "runtime"
crate-type = ["staticlib"] crate-type = ["staticlib"]
path = "lib.rs" path = "main.rs"
[build-dependencies] [build-dependencies]
build_artiq = { path = "../libbuild_artiq" } build_artiq = { path = "../libbuild_artiq" }

View File

@ -7,7 +7,7 @@ build = "build.rs"
[lib] [lib]
name = "satman" name = "satman"
crate-type = ["staticlib"] crate-type = ["staticlib"]
path = "lib.rs" path = "main.rs"
[build-dependencies] [build-dependencies]
build_artiq = { path = "../libbuild_artiq" } build_artiq = { path = "../libbuild_artiq" }