[package]
edition = "2021"
rust-version = "1.75"
name = "brightdate"
version = "0.1.3"
authors = ["Digital-Defiance"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Universal Decimal Time System anchored at J2000.0 — a scientifically grounded, timezone-free time representation"
homepage = "https://brightdate.brightchain.org"
readme = "README.md"
keywords = [
"time",
"astronomy",
"datetime",
"j2000",
"tai",
]
categories = [
"date-and-time",
"science",
]
license = "MIT"
repository = "https://github.com/Digital-Defiance/brightdate-rust"
[features]
default = []
[lib]
name = "brightdate"
path = "src/lib.rs"
[[test]]
name = "test_arithmetic"
path = "tests/test_arithmetic.rs"
[[test]]
name = "test_astronomy"
path = "tests/test_astronomy.rs"
[[test]]
name = "test_calendar"
path = "tests/test_calendar.rs"
[[test]]
name = "test_comparisons"
path = "tests/test_comparisons.rs"
[[test]]
name = "test_constants"
path = "tests/test_constants.rs"
[[test]]
name = "test_conversions"
path = "tests/test_conversions.rs"
[[test]]
name = "test_formatting"
path = "tests/test_formatting.rs"
[[test]]
name = "test_interplanetary"
path = "tests/test_interplanetary.rs"
[[test]]
name = "test_intervals"
path = "tests/test_intervals.rs"
[[test]]
name = "test_leap_seconds"
path = "tests/test_leap_seconds.rs"
[[test]]
name = "test_scheduling"
path = "tests/test_scheduling.rs"
[[test]]
name = "test_serialization"
path = "tests/test_serialization.rs"
[[test]]
name = "test_timezones"
path = "tests/test_timezones.rs"
[[test]]
name = "test_types"
path = "tests/test_types.rs"
[[test]]
name = "test_validation"
path = "tests/test_validation.rs"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "1"
[dev-dependencies]