Create a new lib/rust directory and add a very basic rust library in there. This will eventually expand to include more features. For now it only has a few ulib calls needed for the example programs. Co-developed-by: Claude <noreply@anthropic.com> Co-developed-by: Simon Glass <sjg@chromium.org> Signed-off-by: Simon Glass <sjg@chromium.org>
18 lines
462 B
TOML
18 lines
462 B
TOML
# SPDX-License-Identifier: GPL-2.0+
|
|
[package]
|
|
name = "u-boot-sys"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "GPL-2.0+"
|
|
description = "Rust FFI bindings for U-Boot library functions"
|
|
authors = ["Simon Glass <simon.glass@canonical.com>"]
|
|
repository = "https://concept.u-boot.org/u-boot/u-boot"
|
|
keywords = ["u-boot", "ffi", "bindings", "embedded"]
|
|
categories = ["external-ffi-bindings", "embedded"]
|
|
|
|
[lib]
|
|
name = "u_boot_sys"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|