equal
deleted
inserted
replaced
1 [package] |
|
2 name = "corrosion-generator" |
|
3 version = "0.1.0" |
|
4 authors = ["Andrew Gaspar <andrew.gaspar@outlook.com>"] |
|
5 license = "MIT" |
|
6 edition = "2018" |
|
7 |
|
8 [dependencies] |
|
9 cargo_metadata = "0.15" |
|
10 # The crates below are indirect dependencies of cargo metadata, |
|
11 # We explicitly specify maximum versions to allow building the generator |
|
12 # with older toolchains. |
|
13 # Version 1.0.157 upgrades to syn 2.0 and raises MSRV to 1.56 |
|
14 serde = { version = ">=1, <1.0.157", default-features=false } |
|
15 # Version 1.0.40 upgrades to syn 2.0 and raises MSRV to 1.56 |
|
16 thiserror = { version = ">=1, <1.0.40", default-features=false } |
|
17 |
|
18 [dependencies.clap] |
|
19 version = "2.34" |
|
20 default-features = false |
|
21 # Make sure this crate still compiles while it is checked out |
|
22 # in a sub-directory of a repository that has a Cargo.toml. |
|
23 [workspace] |
|