taplo: reorder-keys

Group non-workspace keys before workspace ones for readability.
pull/1218/merge
Tamir Duberstein 3 weeks ago
parent 1ff2c0a2d2
commit 49a828ec56

@ -2,3 +2,4 @@
[rule.formatting] [rule.formatting]
indent_string = " " indent_string = " "
reorder_keys = true

@ -49,11 +49,11 @@ default-members = [
[workspace.package] [workspace.package]
authors = ["Aya Contributors"] authors = ["Aya Contributors"]
edition = "2024"
homepage = "https://aya-rs.dev"
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
repository = "https://github.com/aya-rs/aya" repository = "https://github.com/aya-rs/aya"
homepage = "https://aya-rs.dev"
rust-version = "1.85.0" rust-version = "1.85.0"
edition = "2024"
# NOTE(vadorovsky): Neither cargo-udeps nor cargo-machete are able to detect # NOTE(vadorovsky): Neither cargo-udeps nor cargo-machete are able to detect
# unused crates defined in this section. It would be nice to teach either of # unused crates defined in this section. It would be nice to teach either of
@ -107,8 +107,8 @@ xdpilone = { version = "1.0.5", default-features = false }
unused-extern-crates = "warn" unused-extern-crates = "warn"
[profile.release.package.integration-ebpf] [profile.release.package.integration-ebpf]
debug = 2
codegen-units = 1 codegen-units = 1
debug = 2
[patch.crates-io] [patch.crates-io]
# TODO: Remove when https://github.com/rust-random/getrandom/commit/b75db5cede302bc9734f5bf2b9048a6e05c7f11e appears in a release. # TODO: Remove when https://github.com/rust-random/getrandom/commit/b75db5cede302bc9734f5bf2b9048a6e05c7f11e appears in a release.

@ -1,13 +1,14 @@
[package] [package]
description = "Build-time support for aya projects"
name = "aya-build" name = "aya-build"
version = "0.1.2" version = "0.1.2"
description = "Build-time support for aya projects"
authors.workspace = true authors.workspace = true
edition.workspace = true
homepage.workspace = true
license.workspace = true license.workspace = true
repository.workspace = true repository.workspace = true
homepage.workspace = true
rust-version.workspace = true rust-version.workspace = true
edition.workspace = true
[lints] [lints]
workspace = true workspace = true

@ -1,13 +1,14 @@
[package] [package]
description = "Proc macros used by aya-ebpf"
name = "aya-ebpf-macros" name = "aya-ebpf-macros"
version = "0.1.1" version = "0.1.1"
description = "Proc macros used by aya-ebpf"
authors.workspace = true authors.workspace = true
edition.workspace = true
homepage.workspace = true
license.workspace = true license.workspace = true
repository.workspace = true repository.workspace = true
homepage.workspace = true
rust-version.workspace = true rust-version.workspace = true
edition.workspace = true
[lints] [lints]
workspace = true workspace = true

@ -1,15 +1,16 @@
[package] [package]
name = "aya-log-common"
version = "0.1.15"
description = "A logging library for eBPF programs." description = "A logging library for eBPF programs."
keywords = ["bpf", "ebpf", "log", "logging"]
documentation = "https://docs.rs/aya-log" documentation = "https://docs.rs/aya-log"
keywords = ["bpf", "ebpf", "log", "logging"]
name = "aya-log-common"
version = "0.1.15"
authors.workspace = true authors.workspace = true
edition.workspace = true
homepage.workspace = true
license.workspace = true license.workspace = true
repository.workspace = true repository.workspace = true
homepage.workspace = true
rust-version.workspace = true rust-version.workspace = true
edition.workspace = true
[lints] [lints]
workspace = true workspace = true

@ -1,13 +1,14 @@
[package] [package]
description = "Proc macros used by aya-log-ebpf"
name = "aya-log-ebpf-macros" name = "aya-log-ebpf-macros"
version = "0.1.0" version = "0.1.0"
description = "Proc macros used by aya-log-ebpf"
authors.workspace = true authors.workspace = true
edition.workspace = true
homepage.workspace = true
license.workspace = true license.workspace = true
repository.workspace = true repository.workspace = true
homepage.workspace = true
rust-version.workspace = true rust-version.workspace = true
edition.workspace = true
[lints] [lints]
workspace = true workspace = true

@ -1,13 +1,14 @@
[package] [package]
description = "A parser for the aya log format strings"
name = "aya-log-parser" name = "aya-log-parser"
version = "0.1.13" version = "0.1.13"
description = "A parser for the aya log format strings"
authors.workspace = true authors.workspace = true
edition.workspace = true
homepage.workspace = true
license.workspace = true license.workspace = true
repository.workspace = true repository.workspace = true
homepage.workspace = true
rust-version.workspace = true rust-version.workspace = true
edition.workspace = true
[lints] [lints]
workspace = true workspace = true

@ -1,16 +1,17 @@
[package] [package]
name = "aya-log"
version = "0.2.1"
description = "A logging library for eBPF programs." description = "A logging library for eBPF programs."
documentation = "https://docs.rs/aya-log"
keywords = ["bpf", "ebpf", "log", "logging"] keywords = ["bpf", "ebpf", "log", "logging"]
name = "aya-log"
readme = "README.md" readme = "README.md"
documentation = "https://docs.rs/aya-log" version = "0.2.1"
authors.workspace = true authors.workspace = true
edition.workspace = true
homepage.workspace = true
license.workspace = true license.workspace = true
repository.workspace = true repository.workspace = true
homepage.workspace = true
rust-version.workspace = true rust-version.workspace = true
edition.workspace = true
[lints] [lints]
workspace = true workspace = true

@ -1,16 +1,17 @@
[package] [package]
name = "aya-obj"
version = "0.2.1"
description = "An eBPF object file parsing library with BTF and relocation support." description = "An eBPF object file parsing library with BTF and relocation support."
documentation = "https://docs.rs/aya-obj"
keywords = ["bpf", "btf", "ebpf", "elf", "object"] keywords = ["bpf", "btf", "ebpf", "elf", "object"]
name = "aya-obj"
readme = "README.md" readme = "README.md"
documentation = "https://docs.rs/aya-obj" version = "0.2.1"
authors.workspace = true authors.workspace = true
edition.workspace = true
homepage.workspace = true
license.workspace = true license.workspace = true
repository.workspace = true repository.workspace = true
homepage.workspace = true
rust-version.workspace = true rust-version.workspace = true
edition.workspace = true
[lints] [lints]
workspace = true workspace = true

@ -1,21 +1,22 @@
[package] [package]
description = "A tool for generating bindings for Linux Kernel types"
name = "aya-tool" name = "aya-tool"
version = "0.1.0"
publish = false publish = false
description = "A tool for generating bindings for Linux Kernel types" version = "0.1.0"
authors.workspace = true authors.workspace = true
edition.workspace = true
homepage.workspace = true
license.workspace = true license.workspace = true
repository.workspace = true repository.workspace = true
homepage.workspace = true
rust-version.workspace = true rust-version.workspace = true
edition.workspace = true
[lints] [lints]
workspace = true workspace = true
[dependencies] [dependencies]
anyhow = { workspace = true, default-features = true }
bindgen = { workspace = true, default-features = true } bindgen = { workspace = true, default-features = true }
clap = { workspace = true, default-features = true, features = ["derive"] } clap = { workspace = true, default-features = true, features = ["derive"] }
anyhow = { workspace = true, default-features = true }
thiserror = { workspace = true }
tempfile = { workspace = true } tempfile = { workspace = true }
thiserror = { workspace = true }

@ -1,16 +1,17 @@
[package] [package]
name = "aya"
version = "0.13.1"
description = "An eBPF library with a focus on developer experience and operability." description = "An eBPF library with a focus on developer experience and operability."
documentation = "https://docs.rs/aya"
keywords = ["bpf", "ebpf", "kernel", "linux"] keywords = ["bpf", "ebpf", "kernel", "linux"]
name = "aya"
readme = "README.md" readme = "README.md"
documentation = "https://docs.rs/aya" version = "0.13.1"
authors.workspace = true authors.workspace = true
edition.workspace = true
homepage.workspace = true
license.workspace = true license.workspace = true
repository.workspace = true repository.workspace = true
homepage.workspace = true
rust-version.workspace = true rust-version.workspace = true
edition.workspace = true
[lints] [lints]
workspace = true workspace = true
@ -33,9 +34,9 @@ tokio = { workspace = true, features = ["rt"], optional = true }
tempfile = { workspace = true } tempfile = { workspace = true }
[features] [features]
default = []
async_tokio = ["tokio/net"]
async_std = ["dep:async-io"] async_std = ["dep:async-io"]
async_tokio = ["tokio/net"]
default = []
[package.metadata.docs.rs] [package.metadata.docs.rs]
all-features = true all-features = true

@ -1,12 +1,13 @@
[package] [package]
description = "Bindings for Linux Kernel eBPF types and helpers"
name = "aya-ebpf-bindings" name = "aya-ebpf-bindings"
version = "0.1.1" version = "0.1.1"
description = "Bindings for Linux Kernel eBPF types and helpers"
authors.workspace = true authors.workspace = true
edition.workspace = true
homepage.workspace = true
license.workspace = true license.workspace = true
repository.workspace = true repository.workspace = true
homepage.workspace = true
edition.workspace = true
[lints] [lints]
workspace = true workspace = true

@ -4,12 +4,13 @@ description = "Type aliases to C types like c_int for use with bindgen"
documentation = "https://docs.rs/aya-bpf-cty" documentation = "https://docs.rs/aya-bpf-cty"
name = "aya-ebpf-cty" name = "aya-ebpf-cty"
version = "0.2.2" version = "0.2.2"
authors.workspace = true authors.workspace = true
edition.workspace = true
homepage.workspace = true
license.workspace = true license.workspace = true
repository.workspace = true repository.workspace = true
homepage.workspace = true
rust-version.workspace = true rust-version.workspace = true
edition.workspace = true
[lints] [lints]
workspace = true workspace = true

@ -1,21 +1,22 @@
[package] [package]
description = "A library for writing eBPF programs"
name = "aya-ebpf" name = "aya-ebpf"
version = "0.1.1" version = "0.1.1"
description = "A library for writing eBPF programs"
authors.workspace = true authors.workspace = true
edition.workspace = true
homepage.workspace = true
license.workspace = true license.workspace = true
repository.workspace = true repository.workspace = true
homepage.workspace = true
rust-version.workspace = true rust-version.workspace = true
edition.workspace = true
[lints] [lints]
workspace = true workspace = true
[dependencies] [dependencies]
aya-ebpf-bindings = { version = "^0.1.1", path = "../aya-ebpf-bindings" }
aya-ebpf-cty = { version = "^0.2.2", path = "../aya-ebpf-cty" } aya-ebpf-cty = { version = "^0.2.2", path = "../aya-ebpf-cty" }
aya-ebpf-macros = { version = "^0.1.1", path = "../../aya-ebpf-macros" } aya-ebpf-macros = { version = "^0.1.1", path = "../../aya-ebpf-macros" }
aya-ebpf-bindings = { version = "^0.1.1", path = "../aya-ebpf-bindings" }
[build-dependencies] [build-dependencies]
rustversion = { workspace = true } rustversion = { workspace = true }

@ -1,13 +1,14 @@
[package] [package]
description = "Logging for eBPF programs"
name = "aya-log-ebpf" name = "aya-log-ebpf"
version = "0.1.1" version = "0.1.1"
description = "Logging for eBPF programs"
authors.workspace = true authors.workspace = true
edition.workspace = true
homepage.workspace = true
license.workspace = true license.workspace = true
repository.workspace = true repository.workspace = true
homepage.workspace = true
rust-version.workspace = true rust-version.workspace = true
edition.workspace = true
[lints] [lints]
workspace = true workspace = true

@ -1,13 +1,14 @@
[package] [package]
name = "init" name = "init"
version = "0.1.0"
publish = false publish = false
version = "0.1.0"
authors.workspace = true authors.workspace = true
edition.workspace = true
homepage.workspace = true
license.workspace = true license.workspace = true
repository.workspace = true repository.workspace = true
homepage.workspace = true
rust-version.workspace = true rust-version.workspace = true
edition.workspace = true
[lints] [lints]
workspace = true workspace = true

@ -1,3 +1,3 @@
[build] [build]
publish = "site"
command = "rustup toolchain install nightly -c rust-src && cargo xtask docs" command = "rustup toolchain install nightly -c rust-src && cargo xtask docs"
publish = "site"

@ -1,2 +1,2 @@
pre-release-commit-message = "{{crate_name}}: release version {{version}}"
consolidate-commits = true consolidate-commits = true
pre-release-commit-message = "{{crate_name}}: release version {{version}}"

@ -1,13 +1,14 @@
[package] [package]
name = "integration-common" name = "integration-common"
version = "0.1.0"
publish = false publish = false
version = "0.1.0"
authors.workspace = true authors.workspace = true
edition.workspace = true
homepage.workspace = true
license.workspace = true license.workspace = true
repository.workspace = true repository.workspace = true
homepage.workspace = true
rust-version.workspace = true rust-version.workspace = true
edition.workspace = true
[lints] [lints]
workspace = true workspace = true

@ -1,13 +1,14 @@
[package] [package]
name = "integration-ebpf" name = "integration-ebpf"
version = "0.1.0"
publish = false publish = false
version = "0.1.0"
authors.workspace = true authors.workspace = true
edition.workspace = true
homepage.workspace = true
license.workspace = true license.workspace = true
repository.workspace = true repository.workspace = true
homepage.workspace = true
rust-version.workspace = true rust-version.workspace = true
edition.workspace = true
[lints] [lints]
workspace = true workspace = true

@ -1,13 +1,14 @@
[package] [package]
name = "integration-test" name = "integration-test"
version = "0.1.0"
publish = false publish = false
version = "0.1.0"
authors.workspace = true authors.workspace = true
edition.workspace = true
homepage.workspace = true
license.workspace = true license.workspace = true
repository.workspace = true repository.workspace = true
homepage.workspace = true
rust-version.workspace = true rust-version.workspace = true
edition.workspace = true
[lints] [lints]
workspace = true workspace = true

@ -1,13 +1,14 @@
[package] [package]
name = "xtask" name = "xtask"
version = "0.1.0"
publish = false publish = false
version = "0.1.0"
authors.workspace = true authors.workspace = true
edition.workspace = true
homepage.workspace = true
license.workspace = true license.workspace = true
repository.workspace = true repository.workspace = true
homepage.workspace = true
rust-version.workspace = true rust-version.workspace = true
edition.workspace = true
[lints] [lints]
workspace = true workspace = true

Loading…
Cancel
Save