42 lines
1.1 KiB
TOML
42 lines
1.1 KiB
TOML
[package]
|
|
name = "levcs-merge"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
authors.workspace = true
|
|
|
|
[dependencies]
|
|
levcs-core = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
toml = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
similar = { workspace = true }
|
|
glob = { workspace = true }
|
|
hex = { workspace = true }
|
|
blake3 = { workspace = true }
|
|
tree-sitter = { workspace = true }
|
|
tree-sitter-rust = { workspace = true }
|
|
tree-sitter-python = { workspace = true }
|
|
tree-sitter-javascript = { workspace = true }
|
|
tree-sitter-typescript = { workspace = true }
|
|
tree-sitter-go = { workspace = true }
|
|
tree-sitter-c = { workspace = true }
|
|
tree-sitter-cpp = { workspace = true }
|
|
tree-sitter-java = { workspace = true }
|
|
tree-sitter-ruby = { workspace = true }
|
|
tree-sitter-bash = { workspace = true }
|
|
serde_yaml = { workspace = true }
|
|
quick-xml = { workspace = true }
|
|
pulldown-cmark = { workspace = true }
|
|
wasmtime = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
wat = { workspace = true }
|
|
proptest = { workspace = true }
|
|
criterion = { workspace = true }
|
|
|
|
[[bench]]
|
|
name = "textual_merge"
|
|
harness = false
|