mirror of
https://review.coreboot.org/flashrom.git
synced 2025-04-27 15:12:36 +02:00

Add missing license to the Cargo.toml rust files, and some other metadata that might be useful. BUG=None BRANCH=None TEST=None Change-Id: Ibdab16713395509be511e45c5eae946496020429 Signed-off-by: Evan Benn <evanbenn@chromium.org> Reviewed-on: https://review.coreboot.org/c/flashrom/+/71618 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: Edward O'Callaghan <quasisec@chromium.org>
25 lines
551 B
TOML
25 lines
551 B
TOML
[package]
|
|
name = "libflashrom"
|
|
version = "0.1.0"
|
|
description = "Bindings to the libflashrom library."
|
|
readme = "../README"
|
|
homepage = "https://www.flashrom.org/"
|
|
repository = "https://review.coreboot.org/plugins/gitiles/flashrom/"
|
|
license = "GPL-2.0-only"
|
|
categories = ["api-bindings", "hardware-support"]
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
libflashrom-sys = { path = "../libflashrom-sys" }
|
|
libc = "0.2.124"
|
|
regex = "1.5.5"
|
|
once_cell = "1.7.2"
|
|
|
|
[dev-dependencies]
|
|
rusty-fork = "0.3.0"
|
|
gag = "1"
|
|
|
|
[build-dependencies]
|
|
pkg-config = "0.3.19"
|
|
cc = "1.0.72"
|