Added nimble dependency handler
parent
7d8a075980
commit
5e79f866c1
|
@ -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.
|
This is probably bad code, but it was an excuse to write some Nim.
|
||||||
|
|
||||||
|
|
||||||
## Dependencies
|
|
||||||
|
|
||||||
```
|
|
||||||
nimble install cligen
|
|
||||||
```
|
|
||||||
|
|
||||||
## Compile
|
## Compile
|
||||||
|
|
||||||
```
|
```
|
||||||
nim c binnim.nim
|
nimble install
|
||||||
```
|
```
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
|
@ -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"
|
Loading…
Reference in New Issue