Skip to content

Commit 10f7120

Browse files
committed
bpf-rs-macros: v0.0.1
1 parent 31ea737 commit 10f7120

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bpf-feature/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ nix = "0.23.1"
1313
thiserror = "1.0.30"
1414
bpf-rs = { path = "../bpf-rs" }
1515
serde = { version = "1.0.136", optional = true, features = ["derive"] }
16-
bpf-rs-macros = { version = "0.0.0", path = "../bpf-rs-macros" }
16+
bpf-rs-macros = { version = "0.0.1", path = "../bpf-rs-macros" }
1717

1818
[dev-dependencies]
1919
serde_json = "1.0.79"

bpf-rs-macros/Cargo.toml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
[package]
22
name = "bpf-rs-macros"
3-
version = "0.0.0"
3+
version = "0.0.1"
44
edition = "2021"
5+
homepage = "https://bpfdeploy.io"
6+
description = "Collection of proc macros used within `bpf-rs` and dependant crates."
7+
keywords = ["bpf", "ebpf"]
8+
license = "BSD-2-Clause"
9+
authors = ["Milan <milan@mdaverde.com>"]
510

611
[lib]
712
proc-macro = true

bpf-rs/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ num_enum = "0.5.7"
1616
thiserror = "1.0.30"
1717
libbpf-sys = { version = "0.7.1", package = "bpfdeploy-libbpf-sys" }
1818
serde = { version = "1.0.136", optional = true, features = ["derive"] }
19-
bpf-rs-macros = { version = "0.0.0", path = "../bpf-rs-macros" }
19+
bpf-rs-macros = { version = "0.0.1", path = "../bpf-rs-macros" }
2020

2121
[features]
2222
serde = ["dep:serde", "bpf-rs-macros/serde"]

0 commit comments

Comments
 (0)