diff options
| author | Stefan Zabka <git@zabka.it> | 2025-05-02 23:27:48 +0200 |
|---|---|---|
| committer | Paolo Bonzini <pbonzini@redhat.com> | 2025-05-02 23:37:55 +0200 |
| commit | ffd5a60e9b67e14f7bac7ea29300ea46a944e508 (patch) | |
| tree | bfbbb7725b5e772b7c3c1296e71d70397c389c0d /rust/hw/timer | |
| parent | 8dc4f981004f17efe2d28f26b180f618f24f46de (diff) | |
| download | focaccia-qemu-ffd5a60e9b67e14f7bac7ea29300ea46a944e508.tar.gz focaccia-qemu-ffd5a60e9b67e14f7bac7ea29300ea46a944e508.zip | |
rust: centralize config in workspace root
This commit bundles common config option in the workspace root and applies them through <config>.workspace = true Signed-off-by: Stefan Zabka <git@zabka.it> Link: https://lore.kernel.org/r/20250502212748.124953-1-git@zabka.it Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'rust/hw/timer')
| -rw-r--r-- | rust/hw/timer/hpet/Cargo.toml | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/rust/hw/timer/hpet/Cargo.toml b/rust/hw/timer/hpet/Cargo.toml index 147f216e72..6f07502784 100644 --- a/rust/hw/timer/hpet/Cargo.toml +++ b/rust/hw/timer/hpet/Cargo.toml @@ -1,11 +1,14 @@ [package] name = "hpet" version = "0.1.0" -edition = "2021" authors = ["Zhao Liu <zhao1.liu@intel.com>"] -license = "GPL-2.0-or-later" description = "IA-PC High Precision Event Timer emulation in Rust" -rust-version = "1.63.0" + +edition.workspace = true +homepage.workspace = true +license.workspace = true +repository.workspace = true +rust-version.workspace = true [lib] crate-type = ["staticlib"] |