Merge pull request #629 from sched-ext/scx-rustland-core-fix-crate

scx_rustland_core: move includes back to the lib section
This commit is contained in:
Andrea Righi 2024-09-07 20:15:10 +02:00 committed by GitHub
commit 92b887c8e4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -6,11 +6,6 @@ authors = ["Andrea Righi <andrea.righi@linux.dev>"]
license = "GPL-2.0-only"
repository = "https://github.com/sched-ext/scx"
description = "Framework to implement sched_ext schedulers running in user space"
include = [
"assets/bpf/intf.h",
"assets/bpf/main.bpf.c",
"assets/bpf.rs",
]
[dependencies]
anyhow = "1.0.65"
@ -27,4 +22,9 @@ scx_utils = { path = "../scx_utils", version = "1.0.4" }
[lib]
name = "scx_rustland_core"
path = "src/lib.rs"
include = [
"assets/bpf/intf.h",
"assets/bpf/main.bpf.c",
"assets/bpf.rs",
]