rust/hwphysics/Cargo.toml
author alfadur
Thu, 23 Mar 2023 23:41:26 +0300
changeset 15935 cd3d16905e0e
parent 14144 165e43c3ed59
permissions -rw-r--r--
add basic ECS benchmark
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
14059
c6745a1c827a start a physics engine to try out this data oriented thing everyone seems to be talking about
alfadur
parents:
diff changeset
     1
[package]
c6745a1c827a start a physics engine to try out this data oriented thing everyone seems to be talking about
alfadur
parents:
diff changeset
     2
name = "hwphysics"
c6745a1c827a start a physics engine to try out this data oriented thing everyone seems to be talking about
alfadur
parents:
diff changeset
     3
version = "0.1.0"
c6745a1c827a start a physics engine to try out this data oriented thing everyone seems to be talking about
alfadur
parents:
diff changeset
     4
authors = ["Hedgewars Project"]
c6745a1c827a start a physics engine to try out this data oriented thing everyone seems to be talking about
alfadur
parents:
diff changeset
     5
edition = "2018"
c6745a1c827a start a physics engine to try out this data oriented thing everyone seems to be talking about
alfadur
parents:
diff changeset
     6
c6745a1c827a start a physics engine to try out this data oriented thing everyone seems to be talking about
alfadur
parents:
diff changeset
     7
[dependencies]
c6745a1c827a start a physics engine to try out this data oriented thing everyone seems to be talking about
alfadur
parents:
diff changeset
     8
fpnum = { path = "../fpnum" }
c6745a1c827a start a physics engine to try out this data oriented thing everyone seems to be talking about
alfadur
parents:
diff changeset
     9
integral-geometry = { path = "../integral-geometry" }
14144
165e43c3ed59 pull land into collision detector
alfadur
parents: 14059
diff changeset
    10
land2d = { path = "../land2d" }
15935
cd3d16905e0e add basic ECS benchmark
alfadur
parents: 14144
diff changeset
    11
cd3d16905e0e add basic ECS benchmark
alfadur
parents: 14144
diff changeset
    12
[dev-dependencies]
cd3d16905e0e add basic ECS benchmark
alfadur
parents: 14144
diff changeset
    13
criterion = "0.4.0"
cd3d16905e0e add basic ECS benchmark
alfadur
parents: 14144
diff changeset
    14
cd3d16905e0e add basic ECS benchmark
alfadur
parents: 14144
diff changeset
    15
[[bench]]
cd3d16905e0e add basic ECS benchmark
alfadur
parents: 14144
diff changeset
    16
name = "ecs_bench"
cd3d16905e0e add basic ECS benchmark
alfadur
parents: 14144
diff changeset
    17
harness = false