23 lines
452 B
TOML
23 lines
452 B
TOML
[package]
|
|
name = "automerge-c"
|
|
version = "0.1.0"
|
|
authors = ["Orion Henry <orion.henry@gmail.com>"]
|
|
edition = "2018"
|
|
license = "MIT"
|
|
|
|
[lib]
|
|
name = "automerge"
|
|
crate-type = ["cdylib", "staticlib"]
|
|
bench = false
|
|
doc = 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"
|