blob: a3cd72439c9c8abc8184727cafce9edc3320b7a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
[package]
name = "foo"
version = "0.1.0"
authors = ["Till Höppner <till@hoeppner.ws>"]
build = "build.rs"
include = ["data", "data/*", "data/**"]
publish = false
[dependencies]
phf = "0.7.12"
# includedir = "0.1.1"
includedir = { default-features = true, path = "../lib" }
[build-dependencies]
# includedir_codegen = "0.1.1"
includedir_codegen = { path = "../codegen" }
|