created structs with implementation of Tuple that performs the same operations as the tuple lib. Much easier to use

This commit is contained in:
Jon Janzen
2021-01-23 20:11:24 -07:00
parent ea51c5785d
commit 92bfb55f87
3 changed files with 339 additions and 0 deletions

10
structs/Cargo.toml Normal file
View File

@@ -0,0 +1,10 @@
[package]
name = "structs"
version = "0.1.0"
authors = ["Jon Janzen <jonjanzen@me.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
approx = "0.4"