diff options
author | Akshay <[email protected]> | 2021-10-23 08:11:52 +0100 |
---|---|---|
committer | Akshay <[email protected]> | 2021-10-23 08:11:52 +0100 |
commit | c2f0582d1907dbef69e9ad42ba9d4301337fe1e8 (patch) | |
tree | aacf975dfeb8bd416b70abfe8a21a2ce7c325d0c /bin/Cargo.toml | |
parent | dfcdaf91674461a5150902cb3fdb8f198367ff20 (diff) |
initial implementation of multipass code fixer
Diffstat (limited to 'bin/Cargo.toml')
-rw-r--r-- | bin/Cargo.toml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/Cargo.toml b/bin/Cargo.toml index 0d6f970..af5a288 100644 --- a/bin/Cargo.toml +++ b/bin/Cargo.toml | |||
@@ -6,10 +6,11 @@ edition = "2018" | |||
6 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | 6 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html |
7 | 7 | ||
8 | [dependencies] | 8 | [dependencies] |
9 | lib = { path = "../lib" } | ||
10 | ariadne = "0.1.3" | 9 | ariadne = "0.1.3" |
11 | rnix = "0.9.0" | 10 | rnix = "0.9.0" |
12 | clap = "3.0.0-beta.4" | 11 | clap = "3.0.0-beta.4" |
13 | globset = "0.4.8" | 12 | globset = "0.4.8" |
14 | thiserror = "1.0.30" | 13 | thiserror = "1.0.30" |
14 | similar = "2.1.0" | ||
15 | vfs = { path = "../vfs" } | 15 | vfs = { path = "../vfs" } |
16 | lib = { path = "../lib" } | ||