Cargo.toml 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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.43.0"
  19. num-format = "0.4.4"
  20. byte-unit = "5.1.4"
  21. duct = "0.13.7"
  22. uuid = { version = "1.13.1", features = ["v4"] }
  23. rayon = "1.10.0"
  24. hashbrown = { version = "0.15.0", features = ["rayon"] }
  25. ctrlc = "3.4.4"
  26. lazy_static = "1.5.0"
  27. indicatif = "0.17.8"
  28. rust-htslib = "0.50.0"
  29. arrow = { git = "https://github.com/apache/arrow-rs" }
  30. # arrow = "54.2.1"
  31. bgzip = "0.3.1"
  32. tempfile = "3.14.0"
  33. dashmap = { version = "6.1.0", features = ["rayon", "serde"] }
  34. noodles-fasta = "0.48.0"
  35. noodles-core = "0.16.0"
  36. blake3 = "1.5.5"
  37. rusqlite = { version = "0.33.0", features = ["chrono", "serde_json"] }
  38. dirs = "6.0.0"
  39. noodles-gff = "0.43.0"
  40. itertools = "0.14.0"
  41. rand = "0.9.0"
  42. tar = "0.4.43"
  43. flatbuffers = "25.2.10"
  44. ordered-float = { version = "5.0.0", features = ["serde"] }
  45. bitcode = "0.6.5"
  46. semver = "1.0.26"
  47. petgraph = "0.8.1"
  48. regex = "1.12.2"
  49. toml = "0.9.8"
  50. directories = "6.0.0"
  51. rustc-hash = "2.1.1"
  52. hex = "0.4.3"
  53. walkdir = "2.5.0"
  54. [profile.dev]
  55. opt-level = 0
  56. debug = false