mirror of https://github.com/aya-rs/aya
chore: Use the cargo workspace package table
This allows for inheritance of common fields from the workspace root. The following fields have been made common: - authors - license - repository - homepage - edition Signed-off-by: Dave Tucker <dave@dtucker.co.uk>pull/882/head
parent
664bb47abf
commit
b3e7ef741c
@ -1,8 +1,12 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "aya-bpf-bindings"
|
name = "aya-bpf-bindings"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
authors = ["Alessandro Decina <alessandro.d@gmail.com>"]
|
description = "Bindings for Linux Kernel eBPF types and helpers"
|
||||||
edition = "2021"
|
authors.workspace = true
|
||||||
|
license.workspace = true
|
||||||
|
repository.workspace = true
|
||||||
|
homepage.workspace = true
|
||||||
|
edition.workspace = true
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
aya-bpf-cty = { path = "../aya-bpf-cty" }
|
aya-bpf-cty = { path = "../aya-bpf-cty" }
|
||||||
|
@ -1,9 +1,11 @@
|
|||||||
[package]
|
[package]
|
||||||
authors = ["Jorge Aparicio <jorge@japaric.io>"]
|
|
||||||
edition = "2021"
|
|
||||||
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/cty"
|
documentation = "https://docs.rs/aya-bpf-cty"
|
||||||
license = "MIT OR Apache-2.0"
|
|
||||||
name = "aya-bpf-cty"
|
name = "aya-bpf-cty"
|
||||||
version = "0.2.1"
|
version = "0.2.1"
|
||||||
|
authors.workspace = true
|
||||||
|
license.workspace = true
|
||||||
|
repository.workspace = true
|
||||||
|
homepage.workspace = true
|
||||||
|
edition.workspace = true
|
||||||
|
Loading…
Reference in New Issue