mirror of
https://github.com/italicsjenga/agb.git
synced 2024-12-23 08:11:33 +11:00
Fix build errors by importing the crates manually
This commit is contained in:
parent
2ac49ace06
commit
587e3cb521
|
@ -8,12 +8,12 @@ description = "CLI utility to convert agb stack trace dumps into human readable
|
|||
repository = "https://github.com/agbrs/agb"
|
||||
|
||||
[dependencies]
|
||||
addr2line = { version = "0.23", default-features = false, features = ["rustc-demangle"] }
|
||||
gimli = { version = "0.30", default-features = false, features = ["endian-reader", "std"] }
|
||||
object = { version = "0.36", default-features = false, features = ["read"] }
|
||||
|
||||
thiserror = "1"
|
||||
clap = { version = "4", features = ["derive"] }
|
||||
addr2line = { version = "0.23", default-features = false, features = [
|
||||
"rustc-demangle",
|
||||
"std-object",
|
||||
] }
|
||||
colored = "2"
|
||||
rmp-serde = "1"
|
||||
lz4_flex = "0.11"
|
||||
|
|
|
@ -1,9 +1,7 @@
|
|||
use std::{borrow::Cow, collections::HashMap, io::Cursor, rc::Rc};
|
||||
|
||||
use addr2line::{
|
||||
gimli,
|
||||
object::{self, Object},
|
||||
};
|
||||
use addr2line::gimli;
|
||||
use object::Object;
|
||||
use thiserror::Error;
|
||||
|
||||
#[derive(Debug, Error)]
|
||||
|
|
Loading…
Reference in a new issue