forked from ugandalf/capnp-import
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
32 lines (29 loc) · 993 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[package]
name = "capnp_import"
version = "0.1.0"
edition = "2021"
authors = ["Erik McClure <[email protected]>"]
description = """
Fetches official Cap-n-Proto compiler (capnp) releases and automatically compiles all capnp files in a set of folders, then combines them in a single capnp_include.rs file.
"""
categories = ["compilers", "development-tools::build-utils", "parsing", "web-programming", "network-programming"]
documentation = "https://docs.rs/capnp_import"
homepage = "https://github.com/fundament-software/capnp_import"
readme = "README.md"
repository = "https://github.com/fundament-software/capnp_import"
license = "Apache-2.0"
debug = true
[dependencies]
anyhow = "1.*"
capnpc = "0.14"
wax = "0.5.0"
walkdir = "2"
[build-dependencies]
relative-path = "1.7.2"
anyhow = "1.*"
cmake = { version = "0.1" }
which = "4.3.0"
reqwest = { version = "0.11", features = ["blocking"] }
zip-extract = { version = "^0.1.1", features = ["deflate"] }
[features]
deny-net-fetch = []