[package] name = "sunrise-next" version = "1.2.3" authors = ["Nathan Osman "] description = "Sunrise and sunset calculator" repository = "https://github.com/nathan-osman/rust-sunrise" readme = "README.md" categories = ["date-and-time", "no-std"] license = "MIT" edition = "2021" [lib] name = "sunrise" [features] no-std = ["dep:libm"] [dependencies] chrono = { version = "0.4", default-features = false, features = [] } # feature: no-std libm = { version = "0.2", optional = true } [dev-dependencies] approx = "0.5"