blob: 067245e0ae9cbec93f17310c948d0d90f8054fc3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
version = "0.1.0"
author = "Oskari Timperi"
description = "protobuf library for Nim"
license = "MIT"
skipDirs = @["examples", "tests"]
bin = @["nimpb/compiler/nimpb_build"]
requires "nim >= 0.18.0"
# Hard dependency for now. In the future we could make nimpb_protoc download
# stuff on-demand which would make the dependency a bit lighter. Especially
# if a user already has the protoc compiler somewhere, in which case
# nimpb_protoc might be unnecessary.
requires "nimpb_protoc"
|