All checks were successful
continuous-integration/drone/push Build is passing
Implement PartialEq on `Tuple` and `Matrix4x4` using a local `EPSILON` large enough for our unit tests to pass.
19 lines
340 B
TOML
19 lines
340 B
TOML
[package]
|
|
name = "rtchallenge"
|
|
version = "0.1.0"
|
|
authors = ["Bill Thiede <git@xinu.tv>"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.41"
|
|
criterion = "0.3.4"
|
|
png = "0.16.8"
|
|
thiserror = "1.0.25"
|
|
|
|
|
|
[[bench]]
|
|
name = "matrices"
|
|
harness = false
|