You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
208 B
Rust

use toml::value::Table;
#[derive(Deserialize)]
/// Represents a Package.toml file.
pub struct PackageData {
manifest_verison: u64,
name: String,
version: u64,
key: String,
files: Table,
}