| Crates.io | snss |
| lib.rs | snss |
| version | 0.1.1 |
| created_at | 2025-06-21 21:41:38.51401+00 |
| updated_at | 2025-06-22 00:19:58.183375+00 |
| description | Basic SNSS file parsing (eg. Chrome Session and Tabs Files) |
| homepage | |
| repository | https://github.com/thanadolps/snss |
| max_upload_size | |
| id | 1721119 |
| size | 46,022 |
Basic SNSS file parsing (eg. Chrome Session and Tabs Files)
let data = std::fs::read("Session")?;
let snss = snss::parse(&data)?;
for command in snss.commands {
if let snss::Content::Tab(tab) = command.content {
println!("Tab #{}: [{}]({})", tab.id, tab.title, tab.url);
}
}