-
Notifications
You must be signed in to change notification settings - Fork 19
/
Cargo.toml
67 lines (59 loc) · 1.66 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[package]
name = "cdk-from-cfn"
version = "0.161.0"
edition = "2021"
rust-version = "1.78"
description = "Turn AWS CloudFormation templates into AWS CDK applications"
license = "MIT OR Apache-2.0"
repository = "https://github.com/cdklabs/cdk-from-cfn"
homepage = "https://github.com/cdklabs/cdk-from-cfn#readme"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["golang", "java", "typescript", "python", "csharp"]
# Language support
golang = []
java = []
typescript = []
csharp = []
python = []
[lib]
crate-type = ["cdylib", "lib"]
[dependencies]
anyhow = "^1.0.89"
base64 = "^0.22.1"
clap = { version = "^4.5.19", features = ["cargo"] }
indexmap = { version = "^2.6.0", features = ["serde"] }
nom = "^7.1.3"
numberkit = "^0.1.0"
phf = { version = "^0.11.2", features = ["macros"] }
rustc-hash = { version = "2.0.0", optional = true }
serde = { version = "^1.0.210", features = ["derive"] }
serde-enum-str = "^0.4.0"
serde_with = "^3.10.0"
serde_yaml = "^0.9.34"
thiserror = "^1.0.64"
topological-sort = "^0.2.2"
voca_rs = "^1.15.2"
wasm-bindgen = "^0.2.93"
[dev-dependencies]
aws-config = "^1.5.1"
aws-sdk-cloudformation = "^1.33.0"
tokio = { version = "1", features = ["full"] }
walkdir = "2.5.0"
zip = "0.6.6"
[build-dependencies]
indexmap = "^2.6.0"
phf = { version = "^0.11.2", features = ["macros"] }
phf_codegen = "^0.11.2"
rustc-hash = { version = "2.0.0", optional = true }
serde = { version = "^1.0.210", features = ["derive"] }
serde-enum-str = "^0.4.0"
serde_json = "^1.0.132"
serde_with = "^3.10.0"
voca_rs = "^1.15.2"
walkdir = "2.5.0"
zip = "0.6.6"
[profile.release]
codegen-units = 1
lto = true
opt-level = 3