3a8447c068
This removes the default wrapper which throws errors with some cli arguments, e.g. --save-baseline which is nice for being able to compare versions!
21 lines
424 B
TOML
21 lines
424 B
TOML
[package]
|
|
name = "automerge-c"
|
|
version = "0.1.0"
|
|
authors = ["Orion Henry <orion.henry@gmail.com>"]
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
name = "automerge"
|
|
crate-type = ["cdylib", "staticlib"]
|
|
bench = false
|
|
|
|
[dependencies]
|
|
automerge-backend = { path = "../automerge-backend" }
|
|
automerge-protocol = { path = "../automerge-protocol" }
|
|
libc = "^0.2"
|
|
serde = "^1.0"
|
|
serde_json = "^1.0"
|
|
errno = "^0.2"
|
|
|
|
[build-dependencies]
|
|
cbindgen = "^0.14"
|