diff options
author | Cara Salter <cara@devcara.com> | 2022-06-10 09:40:11 -0400 |
---|---|---|
committer | Cara Salter <cara@devcara.com> | 2022-06-10 09:40:11 -0400 |
commit | 4f4a5a669061e362656895e273b9f4776f682972 (patch) | |
tree | b71cc09fa3d33865e72999532f0ed95182627756 /src | |
parent | eec3c3b7736f7ec54b25712761d00caaa3f78619 (diff) | |
download | solarlib-4f4a5a669061e362656895e273b9f4776f682972.tar.gz solarlib-4f4a5a669061e362656895e273b9f4776f682972.zip |
star: Change ship field to shasum
Diffstat (limited to 'src')
-rw-r--r-- | src/star.rs | 3 |
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 { |