Big update!

- Source code added
- Readme, gitignore, banner and the license are updated
This commit is contained in:
*Nix Fanboy
2024-10-19 19:40:28 +03:00
parent 4f42fe49e2
commit 3336ab8365
32 changed files with 2320 additions and 511 deletions

26
Cargo.toml Normal file
View File

@@ -0,0 +1,26 @@
[package]
name = "unildd"
version = "0.1.0"
edition = "2021"
authors = ["nix-enthusiast"]
license = "BSD-3"
[dependencies]
# Object parsing library
goblin = { version = "0.8.2"}
# For creating static HashMaps
phf = { version = "0.11.2", features = ["macros"] }
# Coloring
owo-colors = "4.1.0"
# For old Windows CMD
anstream = "0.6.15"
[lib]
name = "unildd"
crate-type = ["cdylib", "staticlib"]
[profile.release]
strip = true