Cargo.toml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. [package]
  2. name = "pandora_lib_promethion"
  3. version = "0.1.0"
  4. edition = "2021"
  5. [dependencies]
  6. log = "^0.4.22"
  7. env_logger = "^0.11.3"
  8. anyhow = "1.0.86"
  9. glob = "0.3.2"
  10. pandora_lib_scan = { git = "https://git.t0m4.fr/Thomas/pandora_lib_scan.git" }
  11. pandora_lib_variants = { git = "https://git.t0m4.fr/Thomas/pandora_lib_variants.git" }
  12. pandora_lib_assembler = { git = "https://git.t0m4.fr/Thomas/pandora_lib_assembler.git" }
  13. chrono = { version = "0.4.40", features = ["serde"] }
  14. csv = "1.3.0"
  15. serde = { version = "1.0.204", features = ["derive"] }
  16. serde_json = "1.0"
  17. tracing = "0.1.40"
  18. noodles-csi = "0.53.0"
  19. num-format = "0.4.4"
  20. byte-unit = "5.1.4"
  21. uuid = { version = "1.13.1", features = ["v4"] }
  22. rayon = "1.10.0"
  23. hashbrown = { version = "0.16.1", features = ["rayon"] }
  24. lazy_static = "1.5.0"
  25. indicatif = "0.17.8"
  26. rust-htslib = "0.51.0"
  27. arrow = { git = "https://github.com/apache/arrow-rs" }
  28. # arrow = "54.2.1"
  29. bgzip = "0.3.1"
  30. dashmap = { version = "6.1.0", features = ["rayon", "serde"] }
  31. noodles-fasta = "0.58.0"
  32. noodles-core = "0.18.0"
  33. blake3 = "1.5.5"
  34. rusqlite = { version = "0.33.0", features = ["chrono", "serde_json"] }
  35. dirs = "6.0.0"
  36. noodles-gff = "0.54.0"
  37. itertools = "0.14.0"
  38. rand = "0.9.0"
  39. tar = "0.4.43"
  40. flatbuffers = "25.2.10"
  41. ordered-float = { version = "5.0.0", features = ["serde"] }
  42. bitcode = "0.6.5"
  43. semver = "1.0.26"
  44. petgraph = "0.8.1"
  45. regex = "1.12.2"
  46. toml = "0.9.8"
  47. directories = "6.0.0"
  48. rustc-hash = "2.1.1"
  49. hex = "0.4.3"
  50. walkdir = "2.5.0"
  51. thiserror = "2.0.17"
  52. hostname = "0.4.2"
  53. [profile.dev]
  54. opt-level = 0
  55. debug = false