diff options
Diffstat (limited to 'mingling_cli/Cargo.toml')
| -rw-r--r-- | mingling_cli/Cargo.toml | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/mingling_cli/Cargo.toml b/mingling_cli/Cargo.toml index 93021f0..bc8d59f 100644 --- a/mingling_cli/Cargo.toml +++ b/mingling_cli/Cargo.toml @@ -21,7 +21,7 @@ features = [ "picker", "pathf", "extra_macros", - "structural_renderer" + "async", ] [build-dependencies.mingling] @@ -32,8 +32,18 @@ features = [ ] [dependencies] -cargo_metadata = "0.23.1" +annotate-snippets = "0.12.16" +cargo_metadata = { version = "0.23.1", features = ["builder"] } +just_template = "0.2.0" +proc-macro2 = { version = "1.0.107", features = ["span-locations"] } serde = { version = "1.0.229", features = ["derive"] } serde_json = "1.0.151" +syn = { version = "3.0.2", features = ["full", "extra-traits"] } +tokio = { version = "1.53.1", features = ["full"] } + +[build-dependencies] +serde = { version = "1.0.229", features = ["derive"] } +serde_json = "1.0.151" +just_template = "0.2.0" [workspace] |
