mirror of
https://review.coreboot.org/flashrom.git
synced 2025-04-27 15:12:36 +02:00
rust: Add license and other metadata to Cargo.toml
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>
This commit is contained in:
parent
a031c81f51
commit
e4c51439ac
@ -1,6 +1,12 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "libflashrom-sys"
|
name = "libflashrom-sys"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
|
description = "Native 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 = ["external-ffi-bindings", "hardware-support"]
|
||||||
links = "flashrom"
|
links = "flashrom"
|
||||||
build = "build.rs"
|
build = "build.rs"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
@ -1,10 +1,14 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "libflashrom"
|
name = "libflashrom"
|
||||||
version = "0.1.0"
|
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"
|
edition = "2021"
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
libflashrom-sys = { path = "../libflashrom-sys" }
|
libflashrom-sys = { path = "../libflashrom-sys" }
|
||||||
libc = "0.2.124"
|
libc = "0.2.124"
|
||||||
|
@ -3,6 +3,8 @@ name = "flashrom_tester"
|
|||||||
version = "1.6.0"
|
version = "1.6.0"
|
||||||
authors = ["Edward O'Callaghan <quasisec@chromium.org>",
|
authors = ["Edward O'Callaghan <quasisec@chromium.org>",
|
||||||
"Peter Marheine <pmarheine@chromium.org>"]
|
"Peter Marheine <pmarheine@chromium.org>"]
|
||||||
|
description = "A tool to verify flashrom and flash chip behaviour."
|
||||||
|
license = "GPL-2.0-only"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
build = "build.rs"
|
build = "build.rs"
|
||||||
|
|
||||||
|
@ -3,6 +3,8 @@ name = "flashrom"
|
|||||||
version = "1.0.0"
|
version = "1.0.0"
|
||||||
authors = ["Edward O'Callaghan <quasisec@chromium.org>",
|
authors = ["Edward O'Callaghan <quasisec@chromium.org>",
|
||||||
"Peter Marheine <pmarheine@chromium.org>"]
|
"Peter Marheine <pmarheine@chromium.org>"]
|
||||||
|
description = "Flashrom abstraction for the flashrom_tester tool."
|
||||||
|
license = "GPL-2.0-only"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user