Skip to content

Commit c8bf646

Browse files
committed
toml: add formatter and check in CI
1 parent 893ab76 commit c8bf646

File tree

9 files changed

+15
-9
lines changed

9 files changed

+15
-9
lines changed

.github/workflows/lint.yml

+3
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@ jobs:
2727

2828
- uses: Swatinem/rust-cache@v2
2929

30+
- run: cargo install taplo-cli
31+
- run: taplo fmt --check
32+
3033
- name: Check formatting
3134
run: cargo fmt --all -- --check
3235

.taplo.toml

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[[rule]]
2+
3+
[rule.formatting]
4+
indent_string = " "
5+
reorder_arrays = true

aya-bpf-macros/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ proc-macro = true
1010
[dependencies]
1111
proc-macro2 = "1.0"
1212
quote = "1.0"
13-
syn = {version = "2.0", features = ["full"]}
13+
syn = { version = "2.0", features = ["full"] }
1414

1515
[dev-dependencies]
1616
aya-bpf = { path = "../bpf/aya-bpf" }

aya-log-common/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "aya-log-common"
33
version = "0.1.13"
44
description = "A logging library for eBPF programs."
5-
keywords = ["ebpf", "bpf", "log", "logging"]
5+
keywords = ["bpf", "ebpf", "log", "logging"]
66
license = "MIT OR Apache-2.0"
77
authors = ["The Aya Contributors"]
88
repository = "https://github.com/aya-rs/aya-log"

aya-log/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "aya-log"
33
version = "0.1.13"
44
description = "A logging library for eBPF programs."
5-
keywords = ["ebpf", "bpf", "log", "logging"]
5+
keywords = ["bpf", "ebpf", "log", "logging"]
66
license = "MIT OR Apache-2.0"
77
authors = ["The Aya Contributors"]
88
repository = "https://github.com/aya-rs/aya-log"
@@ -11,7 +11,7 @@ documentation = "https://docs.rs/aya-log"
1111
edition = "2021"
1212

1313
[dependencies]
14-
aya = { path = "../aya", version = "0.11.0", features=["async_tokio"] }
14+
aya = { path = "../aya", version = "0.11.0", features = ["async_tokio"] }
1515
aya-log-common = { path = "../aya-log-common", version = "0.1.13" }
1616
thiserror = "1"
1717
log = "0.4"

bpf/aya-bpf-bindings/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,3 @@ edition = "2021"
66

77
[dependencies]
88
aya-bpf-cty = { path = "../aya-bpf-cty" }
9-

bpf/aya-bpf-cty/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
authors = ["Jorge Aparicio <[email protected]>"]
33
edition = "2021"
4-
categories = ["embedded", "external-ffi-bindings" ,"no-std"]
4+
categories = ["embedded", "external-ffi-bindings", "no-std"]
55
description = "Type aliases to C types like c_int for use with bindgen"
66
documentation = "https://docs.rs/cty"
77
license = "MIT OR Apache-2.0"

netlify.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[build]
2-
publish = "site"
3-
command = "rustup toolchain install nightly -c rust-src && cargo xtask docs"
2+
publish = "site"
3+
command = "rustup toolchain install nightly -c rust-src && cargo xtask docs"

rustfmt.toml

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
unstable_features = true
22
reorder_imports = true
33
imports_granularity = "Crate"
4-

0 commit comments

Comments
 (0)