Cargo.toml 715 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. [package]
  2. name = "actix"
  3. version = "0.6.0"
  4. build = "build.rs"
  5. [[bin]]
  6. name = "actix"
  7. path = "src/main.rs"
  8. [[bin]]
  9. name = "actix-raw"
  10. path = "src/main_raw.rs"
  11. [[bin]]
  12. name = "actix-diesel"
  13. path = "src/main_diesel.rs"
  14. [[bin]]
  15. name = "actix-pg"
  16. path = "src/main_pg.rs"
  17. [dependencies]
  18. askama = "0.6"
  19. serde = "1.0"
  20. serde_json = "1.0"
  21. serde_derive = "1.0"
  22. rand = "0.5"
  23. bytes = "0.4"
  24. num_cpus = "1.0"
  25. futures = "0.1"
  26. tokio-io = "=0.1.5"
  27. tokio-core = "=0.1.12"
  28. http = "0.1"
  29. diesel = { version = "1.2", features = ["postgres"] }
  30. postgres = "0.15"
  31. actix = "0.5"
  32. actix-web = { version = "0.6", default-features = false }
  33. [build-dependencies]
  34. askama = "0.6"
  35. [profile.release]
  36. lto = true
  37. opt-level = 3
  38. codegen-units = 1