1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
use serde::{Deserialize, Serialize};
/// Information about a plugin.
#[derive(Clone, Serialize, Deserialize, Debug, PartialEq)]
#[serde(rename_all = "camelCase")]
pub struct PluginInfo {
/// The name of the plugin.
pub name: String,
/// The version of the plugin.
pub version: String,
/// Gets the key that can be used in the configuration JSON.
pub config_key: String,
/// The file extensions this plugin should format.
pub file_extensions: Vec<String>,
/// The file names this plugin should format.
#[serde(default = "Vec::new")]
pub file_names: Vec<String>,
/// A url the user can go to in order to get help information about the plugin.
pub help_url: String,
/// Schema url for the plugin configuration.
pub config_schema_url: String,
}