
This PR does some clean up of the `migrator` crate: - Remove `.unwrap`s - Don't suppress `rustfmt` Release Notes: - N/A
25 lines
473 B
TOML
25 lines
473 B
TOML
[package]
|
|
name = "migrator"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
publish.workspace = true
|
|
license = "GPL-3.0-or-later"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
path = "src/migrator.rs"
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
collections.workspace = true
|
|
convert_case.workspace = true
|
|
log.workspace = true
|
|
streaming-iterator.workspace = true
|
|
tree-sitter-json.workspace = true
|
|
tree-sitter.workspace = true
|
|
|
|
[dev-dependencies]
|
|
pretty_assertions.workspace = true
|