Cargo.toml (477B)
1 [package] 2 name = "partial_function" 3 version = "0.5.0" 4 authors = ["jojolepro <jojolepromain@gmail.com>"] 5 description = """ 6 A clean way to define function as a set of subfunctions where each has 7 defined start and end bounds. 8 """ 9 edition = "2018" 10 keywords = ["partial", "function", "curve"] 11 documentation = "https://docs.rs/partial_function" 12 repository = "https://github.com/jojolepro/partialfunction" 13 license = "Apache-2.0" 14 exclude = ["doc"] 15 16 [dependencies] 17 derive-new = "0.5.8"