-
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
MJD/JDE UTC fix + `to_time_scale` now available in Python
- Loading branch information
Showing
39 changed files
with
544 additions
and
489 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "hifitime" | ||
version = "4.0.0-alpha.1" | ||
version = "4.0.0-beta" | ||
authors = ["Christopher Rabotin <[email protected]>"] | ||
description = "Ultra-precise date and time handling in Rust for scientific applications with leap second support" | ||
homepage = "https://nyxspace.com/" | ||
|
@@ -75,6 +75,9 @@ web-sys = { version = "0.3", features = [ | |
'PerformanceTiming', | ||
] } | ||
|
||
[lints.rust] | ||
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(kani)'] } | ||
|
||
[[bench]] | ||
name = "crit_epoch" | ||
harness = false | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
""" | ||
* Hifitime, part of the Nyx Space tools | ||
* Copyright (C) 2023 Christopher Rabotin <[email protected]> et al. (cf. https://github.com/nyx-space/hifitime/graphs/contributors) | ||
* Copyright (C) 2017-onwards Christopher Rabotin <[email protected]> et al. (cf. https://github.com/nyx-space/hifitime/graphs/contributors) | ||
* This Source Code Form is subject to the terms of the Apache | ||
* v. 2.0. If a copy of the Apache License was not distributed with this | ||
* file, You can obtain one at https://www.apache.org/licenses/LICENSE-2.0. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
""" | ||
* Hifitime, part of the Nyx Space tools | ||
* Copyright (C) 2023 Christopher Rabotin <[email protected]> et al. (cf. https://github.com/nyx-space/hifitime/graphs/contributors) | ||
* Copyright (C) 2017-onwards Christopher Rabotin <[email protected]> et al. (cf. https://github.com/nyx-space/hifitime/graphs/contributors) | ||
* This Source Code Form is subject to the terms of the Apache | ||
* v. 2.0. If a copy of the Apache License was not distributed with this | ||
* file, You can obtain one at https://www.apache.org/licenses/LICENSE-2.0. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* Hifitime, part of the Nyx Space tools | ||
* Copyright (C) 2023 Christopher Rabotin <[email protected]> et al. (cf. https://github.com/nyx-space/hifitime/graphs/contributors) | ||
* Copyright (C) 2017-onwards Christopher Rabotin <[email protected]> et al. (cf. https://github.com/nyx-space/hifitime/graphs/contributors) | ||
* This Source Code Form is subject to the terms of the Apache | ||
* v. 2.0. If a copy of the Apache License was not distributed with this | ||
* file, You can obtain one at https://www.apache.org/licenses/LICENSE-2.0. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* Hifitime, part of the Nyx Space tools | ||
* Copyright (C) 2023 Christopher Rabotin <[email protected]> et al. (cf. https://github.com/nyx-space/hifitime/graphs/contributors) | ||
* Copyright (C) 2017-onwards Christopher Rabotin <[email protected]> et al. (cf. https://github.com/nyx-space/hifitime/graphs/contributors) | ||
* This Source Code Form is subject to the terms of the Apache | ||
* v. 2.0. If a copy of the Apache License was not distributed with this | ||
* file, You can obtain one at https://www.apache.org/licenses/LICENSE-2.0. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* Hifitime, part of the Nyx Space tools | ||
* Copyright (C) 2023 Christopher Rabotin <[email protected]> et al. (cf. https://github.com/nyx-space/hifitime/graphs/contributors) | ||
* Copyright (C) 2017-onwards Christopher Rabotin <[email protected]> et al. (cf. https://github.com/nyx-space/hifitime/graphs/contributors) | ||
* This Source Code Form is subject to the terms of the Apache | ||
* v. 2.0. If a copy of the Apache License was not distributed with this | ||
* file, You can obtain one at https://www.apache.org/licenses/LICENSE-2.0. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* Hifitime, part of the Nyx Space tools | ||
* Copyright (C) 2023 Christopher Rabotin <[email protected]> et al. (cf. https://github.com/nyx-space/hifitime/graphs/contributors) | ||
* Copyright (C) 2017-onwards Christopher Rabotin <[email protected]> et al. (cf. https://github.com/nyx-space/hifitime/graphs/contributors) | ||
* This Source Code Form is subject to the terms of the Apache | ||
* v. 2.0. If a copy of the Apache License was not distributed with this | ||
* file, You can obtain one at https://www.apache.org/licenses/LICENSE-2.0. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* Hifitime, part of the Nyx Space tools | ||
* Copyright (C) 2023 Christopher Rabotin <[email protected]> et al. (cf. https://github.com/nyx-space/hifitime/graphs/contributors) | ||
* Copyright (C) 2017-onwards Christopher Rabotin <[email protected]> et al. (cf. https://github.com/nyx-space/hifitime/graphs/contributors) | ||
* This Source Code Form is subject to the terms of the Apache | ||
* v. 2.0. If a copy of the Apache License was not distributed with this | ||
* file, You can obtain one at https://www.apache.org/licenses/LICENSE-2.0. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* Hifitime, part of the Nyx Space tools | ||
* Copyright (C) 2023 Christopher Rabotin <[email protected]> et al. (cf. https://github.com/nyx-space/hifitime/graphs/contributors) | ||
* Copyright (C) 2017-onwards Christopher Rabotin <[email protected]> et al. (cf. https://github.com/nyx-space/hifitime/graphs/contributors) | ||
* This Source Code Form is subject to the terms of the Apache | ||
* v. 2.0. If a copy of the Apache License was not distributed with this | ||
* file, You can obtain one at https://www.apache.org/licenses/LICENSE-2.0. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* Hifitime, part of the Nyx Space tools | ||
* Copyright (C) 2023 Christopher Rabotin <[email protected]> et al. (cf. https://github.com/nyx-space/hifitime/graphs/contributors) | ||
* Copyright (C) 2017-onwards Christopher Rabotin <[email protected]> et al. (cf. https://github.com/nyx-space/hifitime/graphs/contributors) | ||
* This Source Code Form is subject to the terms of the Apache | ||
* v. 2.0. If a copy of the Apache License was not distributed with this | ||
* file, You can obtain one at https://www.apache.org/licenses/LICENSE-2.0. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* Hifitime, part of the Nyx Space tools | ||
* Copyright (C) 2023 Christopher Rabotin <[email protected]> et al. (cf. https://github.com/nyx-space/hifitime/graphs/contributors) | ||
* Copyright (C) 2017-onwards Christopher Rabotin <[email protected]> et al. (cf. https://github.com/nyx-space/hifitime/graphs/contributors) | ||
* This Source Code Form is subject to the terms of the Apache | ||
* v. 2.0. If a copy of the Apache License was not distributed with this | ||
* file, You can obtain one at https://www.apache.org/licenses/LICENSE-2.0. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* Hifitime, part of the Nyx Space tools | ||
* Copyright (C) 2023 Christopher Rabotin <[email protected]> et al. (cf. https://github.com/nyx-space/hifitime/graphs/contributors) | ||
* Copyright (C) 2017-onwards Christopher Rabotin <[email protected]> et al. (cf. https://github.com/nyx-space/hifitime/graphs/contributors) | ||
* This Source Code Form is subject to the terms of the Apache | ||
* v. 2.0. If a copy of the Apache License was not distributed with this | ||
* file, You can obtain one at https://www.apache.org/licenses/LICENSE-2.0. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* Hifitime, part of the Nyx Space tools | ||
* Copyright (C) 2023 Christopher Rabotin <[email protected]> et al. (cf. https://github.com/nyx-space/hifitime/graphs/contributors) | ||
* Copyright (C) 2017-onwards Christopher Rabotin <[email protected]> et al. (cf. https://github.com/nyx-space/hifitime/graphs/contributors) | ||
* This Source Code Form is subject to the terms of the Apache | ||
* v. 2.0. If a copy of the Apache License was not distributed with this | ||
* file, You can obtain one at https://www.apache.org/licenses/LICENSE-2.0. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* Hifitime, part of the Nyx Space tools | ||
* Copyright (C) 2023 Christopher Rabotin <[email protected]> et al. (cf. https://github.com/nyx-space/hifitime/graphs/contributors) | ||
* Copyright (C) 2017-onwards Christopher Rabotin <[email protected]> et al. (cf. https://github.com/nyx-space/hifitime/graphs/contributors) | ||
* This Source Code Form is subject to the terms of the Apache | ||
* v. 2.0. If a copy of the Apache License was not distributed with this | ||
* file, You can obtain one at https://www.apache.org/licenses/LICENSE-2.0. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* Hifitime, part of the Nyx Space tools | ||
* Copyright (C) 2023 Christopher Rabotin <[email protected]> et al. (cf. https://github.com/nyx-space/hifitime/graphs/contributors) | ||
* Copyright (C) 2017-onwards Christopher Rabotin <[email protected]> et al. (cf. https://github.com/nyx-space/hifitime/graphs/contributors) | ||
* This Source Code Form is subject to the terms of the Apache | ||
* v. 2.0. If a copy of the Apache License was not distributed with this | ||
* file, You can obtain one at https://www.apache.org/licenses/LICENSE-2.0. | ||
|
Oops, something went wrong.