Skip to content

Commit da3a1fc

Browse files
authored
Fix warning by dev/release profiles from member Cargo.toml to workspace Cargo.toml. (#13)
1 parent 8f54e11 commit da3a1fc

File tree

5 files changed

+5
-20
lines changed

5 files changed

+5
-20
lines changed

Cargo.toml

+5
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,8 @@ members = [
66
"propolis-client",
77
"propolis-server",
88
]
9+
10+
[profile.dev]
11+
panic = "abort"
12+
[profile.release]
13+
panic = "abort"

propolis-cli/Cargo.toml

-5
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,6 @@ edition = "2018"
77

88
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
99

10-
[profile.dev]
11-
panic = "abort"
12-
[profile.release]
13-
panic = "abort"
14-
1510
[dependencies]
1611
pico-args = "0.3"
1712
libc = "0.2"

propolis-client/Cargo.toml

-5
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,6 @@ edition = "2018"
66

77
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
88

9-
[profile.dev]
10-
panic = "abort"
11-
[profile.release]
12-
panic = "abort"
13-
149
[dependencies]
1510
reqwest = { version = "0.11", default-features = false, features = ["json", "rustls-tls"] }
1611
ring = "0.16"

propolis-server/Cargo.toml

-5
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,6 @@ edition = "2018"
77

88
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
99

10-
[profile.dev]
11-
panic = "abort"
12-
[profile.release]
13-
panic = "abort"
14-
1510
[dependencies]
1611
anyhow = "1.0"
1712
bitflags = "1.2"

propolis/Cargo.toml

-5
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,6 @@ edition = "2018"
77

88
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
99

10-
[profile.dev]
11-
panic = "abort"
12-
[profile.release]
13-
panic = "abort"
14-
1510
[dependencies]
1611
libc = "0.2"
1712
bitflags = "1.2"

0 commit comments

Comments
 (0)