bcab3b6e47
The assert_doc and assert_obj macros in automerge/tests::helpers are useful for writing tests for any application working with automerge documents. Typically however, you only want these utilities in tests so rather than packaging them in the main `automerge` crate move them to a new crate (in the spirit of `tokio_test`)
22 lines
317 B
TOML
22 lines
317 B
TOML
[workspace]
|
|
members = [
|
|
"automerge",
|
|
"automerge-c",
|
|
"automerge-cli",
|
|
"automerge-test",
|
|
"automerge-wasm",
|
|
"edit-trace",
|
|
]
|
|
resolver = "2"
|
|
|
|
[profile.release]
|
|
debug = true
|
|
lto = true
|
|
opt-level = 3
|
|
|
|
[profile.bench]
|
|
debug = true
|
|
|
|
[profile.release.package.automerge-wasm]
|
|
debug = false
|
|
opt-level = 3
|