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]
|
||||
name = "aya-bpf-bindings"
|
||||
version = "0.1.0"
|
||||
authors = ["Alessandro Decina <alessandro.d@gmail.com>"]
|
||||
edition = "2021"
|
||||
description = "Bindings for Linux Kernel eBPF types and helpers"
|
||||
authors.workspace = true
|
||||
license.workspace = true
|
||||
repository.workspace = true
|
||||
homepage.workspace = true
|
||||
edition.workspace = true
|
||||
|
||||
[dependencies]
|
||||
aya-bpf-cty = { path = "../aya-bpf-cty" }
|
||||
|
@ -1,9 +1,11 @@
|
||||
[package]
|
||||
authors = ["Jorge Aparicio <jorge@japaric.io>"]
|
||||
edition = "2021"
|
||||
categories = ["embedded", "external-ffi-bindings", "no-std"]
|
||||
description = "Type aliases to C types like c_int for use with bindgen"
|
||||
documentation = "https://docs.rs/cty"
|
||||
license = "MIT OR Apache-2.0"
|
||||
documentation = "https://docs.rs/aya-bpf-cty"
|
||||
name = "aya-bpf-cty"
|
||||
version = "0.2.1"
|
||||
authors.workspace = true
|
||||
license.workspace = true
|
||||
repository.workspace = true
|
||||
homepage.workspace = true
|
||||
edition.workspace = true
|
||||
|
Loading…
Reference in New Issue