This commit is contained in:
JMARyA 2023-11-04 08:22:18 +01:00
commit c4f493966a
Signed by: jmarya
GPG key ID: 901B2ADDF27C2263
5 changed files with 893 additions and 0 deletions

19
Cargo.toml Normal file
View file

@ -0,0 +1,19 @@
[package]
name = "mdpatch"
version = "0.1.0"
edition = "2021"
[profile.release]
strip = true
lto = true
codegen-units = 1
panic = "abort"
[dependencies]
clap = { version = "4.4.7", features = ["cargo"] }
console = "0.15.7"
json-patch = "1.2.0"
regex = "1.10.2"
serde = "1.0.190"
serde_json = "1.0.108"
serde_yaml = "0.9.27"