mirror of https://github.com/aya-rs/aya
taplo: reorder-keys
This reduces manual work, but produces some odd ordering such as crate names not being the first attribute in their manifests.reviewable/pr1219/r9
parent
ff1788b104
commit
bdddbdf52f
@ -1,21 +1,21 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "aya-tool"
|
|
||||||
version = "0.1.0"
|
|
||||||
publish = false
|
|
||||||
description = "A tool for generating bindings for Linux Kernel types"
|
|
||||||
authors.workspace = true
|
authors.workspace = true
|
||||||
|
description = "A tool for generating bindings for Linux Kernel types"
|
||||||
|
edition.workspace = true
|
||||||
|
homepage.workspace = true
|
||||||
license.workspace = true
|
license.workspace = true
|
||||||
|
name = "aya-tool"
|
||||||
|
publish = false
|
||||||
repository.workspace = true
|
repository.workspace = true
|
||||||
homepage.workspace = true
|
|
||||||
rust-version.workspace = true
|
rust-version.workspace = true
|
||||||
edition.workspace = true
|
version = "0.1.0"
|
||||||
|
|
||||||
[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,15 +1,15 @@
|
|||||||
[package]
|
[package]
|
||||||
|
authors.workspace = true
|
||||||
categories = ["embedded", "external-ffi-bindings", "no-std"]
|
categories = ["embedded", "external-ffi-bindings", "no-std"]
|
||||||
description = "Type aliases to C types like c_int for use with bindgen"
|
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"
|
edition.workspace = true
|
||||||
version = "0.2.2"
|
homepage.workspace = true
|
||||||
authors.workspace = true
|
|
||||||
license.workspace = true
|
license.workspace = true
|
||||||
|
name = "aya-ebpf-cty"
|
||||||
repository.workspace = true
|
repository.workspace = true
|
||||||
homepage.workspace = true
|
|
||||||
rust-version.workspace = true
|
rust-version.workspace = true
|
||||||
edition.workspace = true
|
version = "0.2.2"
|
||||||
|
|
||||||
[lints]
|
[lints]
|
||||||
workspace = true
|
workspace = true
|
||||||
|
@ -1,21 +1,21 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "aya-ebpf"
|
|
||||||
version = "0.1.1"
|
|
||||||
description = "A library for writing eBPF programs"
|
|
||||||
authors.workspace = true
|
authors.workspace = true
|
||||||
|
description = "A library for writing eBPF programs"
|
||||||
|
edition.workspace = true
|
||||||
|
homepage.workspace = true
|
||||||
license.workspace = true
|
license.workspace = true
|
||||||
|
name = "aya-ebpf"
|
||||||
repository.workspace = true
|
repository.workspace = true
|
||||||
homepage.workspace = true
|
|
||||||
rust-version.workspace = true
|
rust-version.workspace = true
|
||||||
edition.workspace = true
|
version = "0.1.1"
|
||||||
|
|
||||||
[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,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}}"
|
||||||
|
Loading…
Reference in New Issue