changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > demo / Cargo.toml

changeset 7: 315fedf35bc7
parent: 8f59e2f1b8c4
child: d8f806f1d327
author: ellis <ellis@rwest.io>
date: Sun, 07 May 2023 18:06:13 -0400
permissions: -rw-r--r--
description: rust ffi macros, general stuff
1 [package]
2 name = "demo"
3 version = "0.1.0"
4 build = "build.rs"
5 [lib]
6 path = "lib.rs"
7 crate-type = ["cdylib"]
8 [workspace]
9 members = ["obj","fig","proc_macros"]
10 [dependencies]
11 libc = "0.2"
12 obj = {version = "0.1.0",path = "obj"}
13 fig = {version = "0.1.0",path = "fig"}
14 [build-dependencies]
15 cbindgen = "0.24.3"