Cargo.toml 775 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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-raw-db"
  13. path = "src/main_raw_db.rs"
  14. [[bin]]
  15. name = "actix-diesel"
  16. path = "src/main_diesel.rs"
  17. [[bin]]
  18. name = "actix-pg"
  19. path = "src/main_pg.rs"
  20. [dependencies]
  21. askama = "0.6"
  22. serde = "1.0"
  23. serde_json = "1.0"
  24. serde_derive = "1.0"
  25. rand = "0.5"
  26. bytes = "0.4"
  27. num_cpus = "1.0"
  28. futures = "0.1"
  29. tokio-io = "=0.1.5"
  30. tokio-core = "=0.1.12"
  31. http = "0.1"
  32. diesel = { version = "1.2", features = ["postgres"] }
  33. postgres = "0.15"
  34. actix = "0.5"
  35. actix-web = { version = "^0.6", default-features = false }
  36. [build-dependencies]
  37. askama = "0.6"
  38. [profile.release]
  39. lto = true
  40. opt-level = 3
  41. codegen-units = 1