chore: Toml formatting
Signed-off-by: Awiteb <a@4rs.nl>
This commit is contained in:
parent
b3397f6316
commit
62ca71a140
3 changed files with 37 additions and 21 deletions
16
Cargo.toml
16
Cargo.toml
|
@ -9,26 +9,30 @@ license = "AGPL-3.0-or-later"
|
||||||
|
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
serde = { version = "1.0.214", features = ["derive"] }
|
regex = "1.11.1"
|
||||||
|
rust-i18n = "3.1.2"
|
||||||
serde_json = "1.0.132"
|
serde_json = "1.0.132"
|
||||||
|
thiserror = "2.0.2"
|
||||||
toml = "0.8.19"
|
toml = "0.8.19"
|
||||||
tracing = "0.1.40"
|
tracing = "0.1.40"
|
||||||
tracing-subscriber = "0.3.18"
|
tracing-subscriber = "0.3.18"
|
||||||
thiserror = "2.0.2"
|
|
||||||
regex = "1.11.1"
|
|
||||||
rust-i18n = "3.1.2"
|
|
||||||
|
|
||||||
|
serde = { version = "1.0.214", features = ["derive"] }
|
||||||
reqwest = { version = "0.12.9", default-features = false, features = [
|
reqwest = { version = "0.12.9", default-features = false, features = [
|
||||||
"charset",
|
"charset",
|
||||||
"http2",
|
"http2",
|
||||||
"rustls-tls",
|
"rustls-tls",
|
||||||
] }
|
] }
|
||||||
tokio-util = { version = "0.7.12", default-features = false }
|
teloxide = { version = "0.13.0", default-features = false, features = [
|
||||||
|
"macros",
|
||||||
|
"ctrlc_handler",
|
||||||
|
"rustls",
|
||||||
|
] }
|
||||||
tokio = { version = "1.41.1", default-features = false, features = [
|
tokio = { version = "1.41.1", default-features = false, features = [
|
||||||
"rt-multi-thread",
|
"rt-multi-thread",
|
||||||
"macros",
|
"macros",
|
||||||
"sync",
|
"sync",
|
||||||
"signal",
|
"signal",
|
||||||
] }
|
] }
|
||||||
|
tokio-util = { version = "0.7.12", default-features = false }
|
||||||
url = { version = "2.5.3", default-features = false, features = ["serde"] }
|
url = { version = "2.5.3", default-features = false, features = ["serde"] }
|
||||||
teloxide = { version = "0.13.0", default-features = false, features = ["macros", "ctrlc_handler", "rustls"] }
|
|
||||||
|
|
14
sumi.toml
14
sumi.toml
|
@ -50,7 +50,19 @@ scopes_allowed = []
|
||||||
|
|
||||||
# Rule: List of allowed commit types.
|
# Rule: List of allowed commit types.
|
||||||
# An empty list allows all types. Example: ["feat", "fix", "docs"].
|
# An empty list allows all types. Example: ["feat", "fix", "docs"].
|
||||||
types_allowed = ["feat", "fix", "docs", "refactor", "change", "deprecate", "remove", "security", "perf", "test", "chore"]
|
types_allowed = [
|
||||||
|
"feat",
|
||||||
|
"fix",
|
||||||
|
"docs",
|
||||||
|
"refactor",
|
||||||
|
"change",
|
||||||
|
"deprecate",
|
||||||
|
"remove",
|
||||||
|
"security",
|
||||||
|
"perf",
|
||||||
|
"test",
|
||||||
|
"chore",
|
||||||
|
]
|
||||||
|
|
||||||
# Rule: Header must match regex pattern.
|
# Rule: Header must match regex pattern.
|
||||||
# Example: '^JIRA-\d+:'.
|
# Example: '^JIRA-\d+:'.
|
||||||
|
|
Loading…
Reference in a new issue