forked from libbpf/libbpf-sys
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (29 loc) · 761 Bytes
/
Cargo.toml
File metadata and controls
33 lines (29 loc) · 761 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[package]
name = "libbpf-sys"
version = "1.0.0+v1.0.0"
description = "Rust bindings to libbpf from the Linux kernel"
readme = "README.md"
repository = "https://github.com/libbpf/libbpf-sys"
homepage = "https://github.com/libbpf/libbpf-sys"
keywords = ["bpf", "ebpf", "xdp"]
authors = [
"Alex Forster <alex@alexforster.com>",
"Dan Siemon <dan@coverfire.com>",
"Daniel Xu <dxu@dxuuu.xyz>",
]
license = "BSD-2-Clause"
edition = "2018"
build = "build.rs"
links = "libbpf"
[badges]
travis-ci = { repository = "libbpf/libbpf-sys" }
maintenance = { status = "passively-maintained" }
[build-dependencies]
bindgen = { version = "^0.60", optional = true }
cc = "^1.0"
pkg-config = "0.3"
[lib]
crate-type = ["lib", "staticlib"]
[features]
novendor = []
static = []