disdamoe

Untitled

Jan 4th, 2026
7
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. [package]
  2. name = "stw_clone"
  3. version = "0.0.0"
  4. edition = "2024"
  5.  
  6. [dependencies]
  7. avian3d = "0.4"
  8. bevy = { version = "0.17" }
  9. bevy-inspector-egui = "0.35"
  10. bevy-tnua = "0.26.0"
  11. bevy-tnua-avian3d = "0.8.0"
  12. bevy-tnua-physics-integration-layer = "0.10.0"
  13. bevy_debug_grid = "0.8"
  14. bevy_egui = "0.38"
  15. bevy_gizmos = "0.17.2"
  16. itertools = "0.14"
  17. strum = { version = "0.27", features = ["derive", "strum_macros"] }
  18. dyn-iter = "1.0.1"
  19. bevy_panorbit_camera = { version = "0.33.0", features = ["bevy_egui"] }
  20. bitvec = "1.0.1"
  21. tap = "1.0.1"
  22. egui = "0.33"
  23. keyseq = {version = "0.7.0", features = ["bevy"]}
  24. nonzero_ext = "0.3.0"
  25.  
  26. [profile.release]
  27. codegen-units = 1
  28.  
  29. # Enable a small amount of optimization in the dev profile.
  30. [profile.dev]
  31. opt-level = 1
  32.  
  33. # Enable a large amount of optimization in the dev profile for dependencies.
  34. [profile.dev.package."*"]
  35. opt-level = 3
  36.  
  37. [features]
  38. default = ["fast-compile"]
  39. fast-compile = ["bevy/dynamic_linking"]
  40.  
  41. [package.metadata.cargo-machete]
  42. ignored = ["bevy-tnua-physics-integration-layer", "bevy_gizmos"]
  43.  
Advertisement
Add Comment
Please, Sign In to add comment