cargo update; restructure; add ui lib

This commit is contained in:
🪞👃🪞 2025-03-15 17:04:22 +02:00
parent 3c4491d632
commit e3cc8395e1
19 changed files with 830 additions and 86 deletions

870
Cargo.lock generated

File diff suppressed because it is too large Load diff

View file

@ -1,6 +1,6 @@
[workspace] [workspace]
resolver = "2" resolver = "2"
members = [ members = [
"crates/vestal", "vestal",
"crates/wrapper" "wrapper"
] ]

View file

@ -1,19 +0,0 @@
[package]
name = "vestal"
version = "0.1.0"
edition = "2021"
[dependencies]
clap = { version = "4.5.4", features = [ "cargo" ] }
syscalls = "0.6.18"
object = { version = "0.36.7", features = [ "read_core", "write_core", "elf", "pe" ] }
hexy = "0.1.4"
pretty-hex = "0.4.1"
exe = "0.5.6"
iced-x86 = "1.21.0"
itertools = "0.14.0"
binary-layout = "4.0.2"
#elf = "0.7.4"
#goblin = "0.9.3"
#lancelot = "0.9.7"
#falcon = "0.5.5"

21
vestal/Cargo.toml Normal file
View file

@ -0,0 +1,21 @@
[package]
name = "vestal"
version = "0.1.0"
edition = "2021"
[dependencies]
tengri = { git = "https://codeberg.org/unspeaker/tengri", rev = "877b344765" }
binary-layout = "4.0.2"
clap = { version = "4.5.4", features = [ "cargo" ] }
exe = "0.5.6"
hexy = "0.1.4"
iced-x86 = "1.21.0"
itertools = "0.14.0"
object = { version = "0.36.7", features = [ "read_core", "write_core", "elf", "pe" ] }
pretty-hex = "0.4.1"
syscalls = "0.6.18"
#elf = "0.7.4"
#goblin = "0.9.3"
#lancelot = "0.9.7"
#falcon = "0.5.5"

View file

@ -32,4 +32,4 @@ pub enum Verbosity {
Brief, Brief,
Verbose, Verbose,
} }
//println!(" ⋮ "); //println!(" ⋮ ");