Cargo.toml 496 B

12345678910111213141516
  1. [package]
  2. name = "aligner_client"
  3. version = "0.1.0"
  4. edition = "2021"
  5. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  6. [dependencies]
  7. reqwest = { version = "0.12", features = ["json"] }
  8. tokio = { version = "1.36.0", features = ["full"] }
  9. minimap2 = { git = "https://github.com/jguhlin/minimap2-rs", features = ["simde"]}
  10. serde = { version = "1.0.197", features = ["derive"] }
  11. serde_nested_with = "0.2.5"
  12. serde_json = "1.0.114"
  13. anyhow = "^1.0.75"