aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCara Salter <cara@devcara.com>2022-06-10 09:40:11 -0400
committerCara Salter <cara@devcara.com>2022-06-10 09:40:11 -0400
commit4f4a5a669061e362656895e273b9f4776f682972 (patch)
treeb71cc09fa3d33865e72999532f0ed95182627756
parenteec3c3b7736f7ec54b25712761d00caaa3f78619 (diff)
downloadsolarlib-4f4a5a669061e362656895e273b9f4776f682972.tar.gz
solarlib-4f4a5a669061e362656895e273b9f4776f682972.zip
star: Change ship field to shasum
-rw-r--r--src/star.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/star.rs b/src/star.rs
index a9f3bfa..30222a1 100644
--- a/src/star.rs
+++ b/src/star.rs
@@ -51,7 +51,8 @@ pub struct NewPlanet {
pub max_mem: Memory,
pub max_cpus: CpuCount,
pub disk_size_mb: u64,
- pub ship: Ship,
+ /// shasum of the ship
+ pub ship: String,
}
impl Star {