first bits of a dynamc lib

This commit is contained in:
Dustin J. Mitchell
2022-01-22 22:48:40 +00:00
parent 8576e7ffa7
commit 33f5f056b1
13 changed files with 6942 additions and 1 deletions

15
lib/Cargo.toml Normal file
View File

@@ -0,0 +1,15 @@
[package]
name = "taskchampion-lib"
version = "0.1.0"
edition = "2021"
build = "build.rs"
[lib]
name = "taskchampion"
crate-type = ["cdylib"]
[dependencies]
taskchampion = { path = "../taskchampion" }
[build-dependencies]
cbindgen = "0.20.0"