From f0463521ac41aacc2d318e13c170837a4c267333 Mon Sep 17 00:00:00 2001 From: Aleksa Sarai Date: Fri, 19 Jul 2024 17:27:04 +1000 Subject: [PATCH] cargo: drop backtrace dep Now that we switched to std::backtrace as part of commit b839b3c1eebc ("deps: update to snafu v0.8"), we don't need this dependency anymore. Signed-off-by: Aleksa Sarai --- Cargo.toml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 38774f17..106b25ef 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ # libpathrs: safe path resolution on Linux -# Copyright (C) 2019-2021 Aleksa Sarai -# Copyright (C) 2019-2021 SUSE LLC +# Copyright (C) 2019-2024 Aleksa Sarai +# Copyright (C) 2019-2024 SUSE LLC # # This program is free software: you can redistribute it and/or modify it under # the terms of the GNU Lesser General Public License as published by the Free @@ -43,7 +43,6 @@ lto = true panic = "abort" [dependencies] -backtrace = "^0.3" bitflags = "^2" lazy_static = "^1" libc = "^0.2"