# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "auburn" version = "0.1.4" build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Fast and simple physics library." readme = "README.md" keywords = [ "math", "physics", "geometry", "gamedev", "algorithm", ] categories = [ "algorithms", "data-structures", "game-development", "mathematics", "simulation", ] license = "MIT OR Apache-2.0" repository = "https://github.com/lubomirkurcak/auburn/" [profile.dev] opt-level = 1 [profile.dev.package."*"] opt-level = 3 [lib] name = "auburn" path = "src/lib.rs" [[example]] name = "basic2d" path = "examples/basic2d.rs" [[example]] name = "basic3d" path = "examples/basic3d.rs" [dependencies.bevy] version = "0.14.1" optional = true [dependencies.glam] version = "0.27.0" [dependencies.lk_math] version = "0.4.0" optional = true [dependencies.round-to] version = "0.1.0" [dependencies.serde] version = "1.0.195" optional = true [dependencies.serde_json] version = "1.0.111" optional = true [dependencies.serde_with] version = "3.4.0" optional = true [dev-dependencies.approx] version = "0.5.1" [features] bevy = ["dep:bevy"] default = ["tilemap"] gjk = [] serde = [ "dep:serde", "dep:serde_json", "dep:serde_with", ] std = [] tilemap = [ "std", "serde", "dep:lk_math", ]