mirror of
https://github.com/codex-storage/nim-leveldb.git
synced 2025-02-16 09:37:17 +00:00
The tool app name changed from `leveldb` to `leveldbtool` considering the following reasons: * `leveldb` looks like an official app, but it's not. * It is confusing when binary has a name as same as the library, so nimble warned about hybrid projects. * The new sketch of the binary project offered by nimble does not include `bin` directory.
14 lines
258 B
Nim
14 lines
258 B
Nim
# Package
|
|
|
|
version = "0.3.0"
|
|
author = "Michał Zieliński"
|
|
description = "LevelDB wrapper for Nim"
|
|
license = "MIT"
|
|
srcDir = "src"
|
|
installExt = @["nim"]
|
|
bin = @["leveldbtool"]
|
|
|
|
# Dependencies
|
|
|
|
requires "nim >= 0.18.0"
|