/ Cargo.toml
Cargo.toml
 1  [package]
 2  name = "fst-rs"
 3  version = "0.1.0"
 4  edition = "2021"
 5  
 6  [dependencies]
 7  futures = { version = "0.3.31", features = ["executor", "thread-pool"] } 
 8  anyhow = "1.0.94"
 9  thiserror = "2.0.6"
10  tokio = { version = "1.42.0", features = ["full"] }
11  tokio-stream = "0.1.17"
12  num-traits = "0.2.19"
13  
14  [dev-dependencies]
15  quickcheck = "1"
16  quickcheck_macros = "1"
17  quickcheck_async = "0.1.1"