Brian Silverman | 4e662aa | 2022-05-11 23:10:19 -0700 | [diff] [blame] | 1 | # Copyright 2020 Google LLC |
| 2 | # |
| 3 | # Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or |
| 4 | # https://www.apache.org/licenses/LICENSE-2.0> or the MIT license |
| 5 | # <LICENSE-MIT or https://opensource.org/licenses/MIT>, at your |
| 6 | # option. This file may not be copied, modified, or distributed |
| 7 | # except according to those terms. |
| 8 | |
| 9 | [package] |
| 10 | name = "autocxx-reduce" |
Brian Silverman | f3ec38b | 2022-07-06 20:43:36 -0700 | [diff] [blame] | 11 | version = "0.22.3" |
Brian Silverman | 4e662aa | 2022-05-11 23:10:19 -0700 | [diff] [blame] | 12 | authors = ["adetaylor <adetaylor@chromium.org>"] |
| 13 | edition = "2021" |
| 14 | |
| 15 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html |
| 16 | |
| 17 | [dependencies] |
Brian Silverman | f3ec38b | 2022-07-06 20:43:36 -0700 | [diff] [blame] | 18 | autocxx-engine = { version = "=0.22.3", path="../../engine" } |
| 19 | autocxx-parser = { version = "=0.22.3", path="../../parser", features = [ "reproduction_case" ] } |
Brian Silverman | 4e662aa | 2022-05-11 23:10:19 -0700 | [diff] [blame] | 20 | clap = { version = "3.1.2", features = ["cargo"] } |
| 21 | tempfile = "3.1" |
| 22 | indoc = "1.0" |
| 23 | itertools = "0.10" |
| 24 | serde_json = "1.0" |
| 25 | serde = "1.0" |
| 26 | serde_derive = "1.0" |
| 27 | syn = "1.0.39" |
| 28 | quote = "1.0" |
Brian Silverman | f3ec38b | 2022-07-06 20:43:36 -0700 | [diff] [blame] | 29 | cxx-gen = "0.7.68" |
Brian Silverman | 4e662aa | 2022-05-11 23:10:19 -0700 | [diff] [blame] | 30 | regex = "1.5" |
| 31 | indexmap = "1.8" |
| 32 | |
| 33 | [dev-dependencies] |
| 34 | assert_cmd = "1.0.3" |
Brian Silverman | f3ec38b | 2022-07-06 20:43:36 -0700 | [diff] [blame] | 35 | tempfile = "3.1" |
Brian Silverman | 4e662aa | 2022-05-11 23:10:19 -0700 | [diff] [blame] | 36 | indoc = "1.0" |
| 37 | proc-macro2 = "1.0" |