diff options
Diffstat (limited to 'mingling_cli/Cargo.toml')
| -rw-r--r-- | mingling_cli/Cargo.toml | 40 |
1 files changed, 36 insertions, 4 deletions
diff --git a/mingling_cli/Cargo.toml b/mingling_cli/Cargo.toml index 93021f0..330ef5a 100644 --- a/mingling_cli/Cargo.toml +++ b/mingling_cli/Cargo.toml @@ -13,27 +13,59 @@ categories = ["command-line-interface"] [[bin]] name = "mling" +path = "src/bin/wrapper.rs" + +[[bin]] +name = "mingling-cli" path = "src/main.rs" [dependencies.mingling] path = "../mingling" features = [ + "extra_macros", "picker", "pathf", - "extra_macros", - "structural_renderer" + "async", ] [build-dependencies.mingling] path = "../mingling" features = [ - "builds", + "build", "pathf", ] [dependencies] -cargo_metadata = "0.23.1" + +# Project analyze +cargo_metadata = { version = "0.23.1", features = ["builder"] } +annotate-snippets = "0.12.16" + +# Code analyze +proc-macro2 = { version = "1.0.107", features = ["span-locations"] } +syn = { version = "3.0.2", features = ["full", "extra-traits"] } +quote = "1.0.47" + +# Configure & Serialization serde = { version = "1.0.229", features = ["derive"] } serde_json = "1.0.151" +# Parallelism +tokio = { version = "1.53.1", features = ["full"] } +toml_edit = "0.25.13" + +[build-dependencies] +# Configure & Serialization +serde = { version = "1.0.229", features = ["derive"] } +serde_json = "1.0.151" + +# Code gen +just_template = "0.2.0" + +[profile.release] +opt-level = "z" +lto = true +codegen-units = 1 +strip = true + [workspace] |
