mirror of
https://git.proxmox.com/git/pve-installer
synced 2025-04-28 10:32:12 +00:00

The `NetworkOptions` struct was moved here in5362c05cd
("common: copy common code from tui-installer") and86c48f76f
("tui: switch to common crate") but the tests were forgotten at the original place. No functional changes. Signed-off-by: Christoph Heiss <c.heiss@proxmox.com>
17 lines
486 B
TOML
17 lines
486 B
TOML
[package]
|
|
name = "proxmox-tui-installer"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
authors = [ "Christoph Heiss <c.heiss@proxmox.com>" ]
|
|
license = "AGPL-3"
|
|
exclude = [ "build", "debian" ]
|
|
homepage = "https://www.proxmox.com"
|
|
|
|
[dependencies]
|
|
proxmox-installer-common.workspace = true
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json.workspace = true
|
|
regex.workspace = true
|
|
|
|
cursive = { version = "0.21", default-features = false, features = ["crossterm-backend"] }
|