Skip to content

Commit

Permalink
Merge pull request #1 from elcoosp/feat/make-rule-macro
Browse files Browse the repository at this point in the history
feat(cli): `make_rule!` macro
  • Loading branch information
elcoosp authored Dec 3, 2024
2 parents 90565c1 + 2ddc0f4 commit 41ced4f
Show file tree
Hide file tree
Showing 24 changed files with 1,045 additions and 222 deletions.
85 changes: 81 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,6 @@ readme = "README.md"
repository = "https://github.com/KeisukeYamashita/commitlint-rs"
exclude = ["/web"]
edition = "2021"
[profile.dev.package]
insta.opt-level = 3
similar.opt-level = 3
5 changes: 2 additions & 3 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,16 @@ repository.workspace = true
license.workspace = true
edition.workspace = true

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[[bin]]
name = "commitlint"
path = "src/main.rs"

[dependencies]
paste = { git = "https://github.com/elcoosp/paste", branch = "feat/dash" }
clap = { version = "4.5.4", features = ["derive", "env", "string"] }
futures = "0.3.30"
regex = "1.10.5"
schemars = { version = "0.8.21", optional = true }
schemars = { version = "1.0.0-alpha.16", optional = true }
serde = { version = "1.0.201", features = ["derive"] }
serde_json = "1.0.121"
serde_yaml = "0.9.34"
Expand Down
Loading

0 comments on commit 41ced4f

Please sign in to comment.