Begin working on porting much of the opentofu related code
into rust. Mainly this should give proper argument parsing and error handling, and also remove some of all the scattered shell scripts.
This commit is contained in:
parent
30cf1f407a
commit
e6a152e95c
9 changed files with 319 additions and 25 deletions
14
rust/program/provision/Cargo.toml
Normal file
14
rust/program/provision/Cargo.toml
Normal file
|
@ -0,0 +1,14 @@
|
|||
[package]
|
||||
name = "provision"
|
||||
edition = "2024"
|
||||
version = "1.0.0"
|
||||
metadata.crane.name = "provision"
|
||||
|
||||
[dependencies]
|
||||
anyhow = { workspace = true }
|
||||
clap = { workspace = true }
|
||||
common = { path = "../../lib/common" }
|
||||
log = { workspace = true }
|
||||
serde = { workspace = true }
|
||||
serde_json = { workspace = true }
|
||||
hakari = { version = "0.1", path = "../../lib/hakari" }
|
Loading…
Add table
Add a link
Reference in a new issue