Cargo.toml 917 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. [package]
  2. name = "helix-cli"
  3. version = "1.0.121"
  4. edition = "2024"
  5. [dependencies]
  6. helix-db = { path = "../helix-db" }
  7. clap = { version = "4.5.40", features = ["derive"] }
  8. tempfile = "3.19.1"
  9. dirs = "6.0.0"
  10. serde = { version = "1.0.219", features = ["derive"] }
  11. sonic-rs = "0.5.1"
  12. uuid = { version = "1.16.0", features = ["v4"] }
  13. chrono = "0.4"
  14. libc = "0.2.172"
  15. tokio = { version = "1.45.0", features = ["full"] }
  16. open = "5.0.1"
  17. spinners = "4"
  18. indicatif = "0.17.11"
  19. toml = "0.8"
  20. reqwest = { version = "0.12", features = ["json"] }
  21. serde_json = "1.0"
  22. webbrowser = "1.0"
  23. tokio-tungstenite = "0.27.0"
  24. futures-util = "0.3.31"
  25. anyhow = "1.0.98"
  26. [target.'cfg(windows)'.dependencies]
  27. windows = { version = "0.61.1", features = [
  28. "Win32_System_Threading",
  29. "Win32_Foundation",
  30. ] }
  31. [[bin]]
  32. name = "helix"
  33. path = "src/main.rs"
  34. [features]
  35. normal = ["helix-db/server"]
  36. ingestion = ["helix-db/full"]
  37. default = ["normal"]