automerge/automerge-cli/Cargo.toml

30 lines
631 B
TOML

[package]
name = "automerge-cli"
version = "0.1.0"
authors = ["Alex Good <alex@memoryandthought.me>"]
edition = "2018"
license = "MIT"
[[bin]]
name = "automerge"
path = "src/main.rs"
bench = false
doc = false
[dependencies]
clap = {version = "~3.1", features = ["derive"]}
serde_json = "^1.0"
anyhow = "1.0"
atty = "0.2"
thiserror = "1.0.16"
combine = "4.5.2"
maplit = "1.0.2"
colored_json = "2.1.0"
tracing-subscriber = "~0.3"
automerge-backend = { path = "../automerge-backend" }
automerge-frontend = { path = "../automerge-frontend" }
automerge-protocol = { path = "../automerge-protocol" }
[dev-dependencies]
duct = "0.13"