runtime-rs: Remove libbacktrace feature from backtrace

This feature was removed in https://github.com/rust-lang/backtrace-rs/pull/615
which shows that the implementation was removed over two years ago, so
get rid of this feature, so we can move to newer versions

Signed-off-by: stevenhorsman <steven@uk.ibm.com>
This commit is contained in:
stevenhorsman
2025-11-17 10:03:40 +00:00
committed by Fabiano Fidêncio
parent 398e7987cd
commit fe10db233c

View File

@@ -14,9 +14,8 @@ path = "src/bin/main.rs"
[dependencies]
anyhow = { workspace = true }
backtrace = { version = ">=0.3.35", features = [
backtrace = { version = ">=0.3.76", features = [
"libunwind",
"libbacktrace",
"std",
], default-features = false }
containerd-shim-protos = { workspace = true }