mirror of
https://github.com/Drop-OSS/drop.git
synced 2026-07-26 01:34:38 +10:00
12 lines
216 B
Rust
12 lines
216 B
Rust
use std::collections::HashMap;
|
|
|
|
use serde::Deserialize;
|
|
|
|
#[derive(Deserialize)]
|
|
pub struct DropChunk {
|
|
pub ids: Vec<String>,
|
|
pub lengths: Vec<usize>,
|
|
}
|
|
|
|
pub type DropletManifest = HashMap<String, DropChunk>;
|