-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
31 lines (29 loc) · 948 Bytes
/
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
[package]
name = "tf-bindgen"
version = "0.1.0"
edition = "2021"
description = "Automatically generates Rust bindings for Terraform providers."
license = "BSD-3-Clause"
repository = "https://github.com/robert-oleynik/tf-bindgen"
keywords = ["tf-bindgen", "terraform", "infrastructure", "code-generation", "bindings"]
categories = ["config", "external-ffi-bindings", "development-tools::ffi"]
[workspace]
members = [
"crates/schema",
"crates/codegen",
"crates/cli",
"crates/core"
]
[dependencies]
anyhow = "1.0.69"
heck = "0.4.1"
serde = { version = "1.0.152", features = ["derive"] }
serde_json = "1.0.95"
tf-bindgen-cli = { path = "crates/cli", version = "0.1.0" }
tf-bindgen-codegen = { path = "crates/codegen", version = "0.1.0" }
tf-bindgen-core = { path = "crates/core", version = "0.1.0" }
tf-bindgen-schema = { path = "crates/schema", version = "0.1.0" }
toml = "0.7.2"
semver = "1.0.16"
itertools = "0.10.5"
derive_builder = "0.12.0"