Added nimble dependency handler

main
John Hammond 2023-06-28 00:05:08 -04:00
parent 7d8a075980
commit 5e79f866c1
3 changed files with 15 additions and 7 deletions

View File

@ -13,16 +13,10 @@ Perhaps one day this will include more representations of data, but for now, thi
This is probably bad code, but it was an excuse to write some Nim.
## Dependencies
```
nimble install cligen
```
## Compile
```
nim c binnim.nim
nimble install
```
## Usage

14
binnim.nimble Normal file
View File

@ -0,0 +1,14 @@
# Package
version = "0.1.0"
author = "John Hammond"
description = "Read in files to display in hex format for shellcode"
license = "MIT"
srcDir = "src"
bin = @["binnim"]
# Dependencies
requires "nim >= 1.6.14"
requires "cligen >= 1.6.6"