automerge/automerge-c/Cargo.toml
Andrew Jeffery 3a8447c068
Remove automerge bench harness (#106)
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!
2021-04-27 10:30:07 +01:00

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"