diff --git a/src/lib.rs b/src/lib.rs
index bbe797b..7838394 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -9,6 +9,8 @@ use yaml_rust2::Yaml;
pub const BASE_URL: &str = "http://thunderstore.io";
+pub type DependencyString = String;
+
#[derive(Debug, Clone)]
pub struct ModInfo {
pub name: String,
@@ -16,7 +18,7 @@ pub struct ModInfo {
pub version: (i64, i64, i64),
pub website_url: String,
pub enabled: bool,
- pub dependencies: Vec