The integration tests use both libcretonne and libreader, so moving them avoids the circular dev-dependency. Also go back to building everything under src/tools/target to avoid rebuilding the libraries when cargo is invoked in different subdirectories. This speeds up test-all.sh quite a bit. Finally, skip the pure debug build. We build "cargo test" and "cargo build --release" which should cover everything we need.
14 lines
320 B
TOML
14 lines
320 B
TOML
[package]
|
|
authors = ["The Cretonne Project Developers"]
|
|
name = "cretonne"
|
|
version = "0.0.0"
|
|
description = "Low-level code generator library"
|
|
documentation = "https://cretonne.readthedocs.io/"
|
|
repository = "https://github.com/stoklund/cretonne"
|
|
publish = false
|
|
build = "build.rs"
|
|
|
|
[lib]
|
|
name = "cretonne"
|
|
path = "lib.rs"
|