summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGeorge Kadianakis <desnacked@riseup.net>2019-04-15 13:56:48 +0300
committerGeorge Kadianakis <desnacked@riseup.net>2019-04-15 13:56:48 +0300
commit3f9efc5e88f4c0eaffb3f06ba58a99e8b5d59f83 (patch)
treedbd40ced5e4f5590f827482ab14da66851ec26c9 /src
parent7b386f2356c9c706e9432b19058dee8147030056 (diff)
parent15591e1bbda17983fa2f8f099d48fcef2e675971 (diff)
downloadtor-3f9efc5e88f4c0eaffb3f06ba58a99e8b5d59f83.tar.gz
tor-3f9efc5e88f4c0eaffb3f06ba58a99e8b5d59f83.zip
Merge branch 'maint-0.4.0'
Diffstat (limited to 'src')
-rw-r--r--src/rust/Cargo.toml11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/rust/Cargo.toml b/src/rust/Cargo.toml
index 83f9629660..de8693ea33 100644
--- a/src/rust/Cargo.toml
+++ b/src/rust/Cargo.toml
@@ -10,6 +10,17 @@ members = [
"tor_util",
]
+# Can remove panic="abort" when this issue is fixed:
+# https://github.com/rust-lang/rust/issues/52652
+[profile.dev]
+panic = "abort"
+
[profile.release]
debug = true
panic = "abort"
+
+[profile.test]
+panic = "abort"
+
+[profile.bench]
+panic = "abort"