mirror of https://github.com/aya-rs/aya
taplo: reorder-keys
Group non-workspace keys before workspace ones for readability.pull/1218/merge
parent
1ff2c0a2d2
commit
49a828ec56
@ -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,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,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