blob: 83e3916c7b962a6f6cd5a88ea06fe89631d16ca4 [file] [log] [blame]
Brian Silverman4e662aa2022-05-11 23:10:19 -07001# 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]
10name = "autocxx-reduce"
Brian Silvermanf3ec38b2022-07-06 20:43:36 -070011version = "0.22.3"
Brian Silverman4e662aa2022-05-11 23:10:19 -070012authors = ["adetaylor <adetaylor@chromium.org>"]
13edition = "2021"
14
15# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
16
17[dependencies]
Brian Silvermanf3ec38b2022-07-06 20:43:36 -070018autocxx-engine = { version = "=0.22.3", path="../../engine" }
19autocxx-parser = { version = "=0.22.3", path="../../parser", features = [ "reproduction_case" ] }
Brian Silverman4e662aa2022-05-11 23:10:19 -070020clap = { version = "3.1.2", features = ["cargo"] }
21tempfile = "3.1"
22indoc = "1.0"
23itertools = "0.10"
24serde_json = "1.0"
25serde = "1.0"
26serde_derive = "1.0"
27syn = "1.0.39"
28quote = "1.0"
Brian Silvermanf3ec38b2022-07-06 20:43:36 -070029cxx-gen = "0.7.68"
Brian Silverman4e662aa2022-05-11 23:10:19 -070030regex = "1.5"
31indexmap = "1.8"
32
33[dev-dependencies]
34assert_cmd = "1.0.3"
Brian Silvermanf3ec38b2022-07-06 20:43:36 -070035tempfile = "3.1"
Brian Silverman4e662aa2022-05-11 23:10:19 -070036indoc = "1.0"
37proc-macro2 = "1.0"