diff --git a/Cargo.toml b/Cargo.toml index 17ee50072..64fa7125e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,3 +6,8 @@ members = [ "propolis-client", "propolis-server", ] + +[profile.dev] +panic = "abort" +[profile.release] +panic = "abort" diff --git a/propolis-cli/Cargo.toml b/propolis-cli/Cargo.toml index 04454f135..930fad4f8 100644 --- a/propolis-cli/Cargo.toml +++ b/propolis-cli/Cargo.toml @@ -7,11 +7,6 @@ edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html -[profile.dev] -panic = "abort" -[profile.release] -panic = "abort" - [dependencies] pico-args = "0.3" libc = "0.2" diff --git a/propolis-client/Cargo.toml b/propolis-client/Cargo.toml index 95afa6643..6fd7ed8ae 100644 --- a/propolis-client/Cargo.toml +++ b/propolis-client/Cargo.toml @@ -6,11 +6,6 @@ edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html -[profile.dev] -panic = "abort" -[profile.release] -panic = "abort" - [dependencies] reqwest = { version = "0.11", default-features = false, features = ["json", "rustls-tls"] } ring = "0.16" diff --git a/propolis-server/Cargo.toml b/propolis-server/Cargo.toml index 87346ce7c..567b77da7 100644 --- a/propolis-server/Cargo.toml +++ b/propolis-server/Cargo.toml @@ -7,11 +7,6 @@ edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html -[profile.dev] -panic = "abort" -[profile.release] -panic = "abort" - [dependencies] anyhow = "1.0" bitflags = "1.2" diff --git a/propolis/Cargo.toml b/propolis/Cargo.toml index 5278593d3..3d244ad53 100644 --- a/propolis/Cargo.toml +++ b/propolis/Cargo.toml @@ -7,11 +7,6 @@ edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html -[profile.dev] -panic = "abort" -[profile.release] -panic = "abort" - [dependencies] libc = "0.2" bitflags = "1.2"