Skip to content

Serialization/deserialization not working properly #33

@crabdancing

Description

@crabdancing

Steps to reproduce:

  1. Downloads words.txt
fn main() {
    let mut t = TrieBuilder::new();
    for word in std::fs::read_to_string("words.txt")
        .unwrap()
        .split_whitespace()
    {
        if !word.trim().is_empty() {
            t.push(word);
        }
    }
    let t = t.build();
    println!("Loaded");
    let mut f = File::create_new("words.toml").unwrap();
    write!(f, "{}", toml::to_string(&t).unwrap()).unwrap();
}
Loaded
thread 'main' panicked at src/main.rs:57:41:
called `Result::unwrap()` on an `Err` value: Error { inner: UnsupportedType(Some("unit")) }
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace

Other libraries like postcard also fail, but with deserialization failing instead.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions