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