-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix allsky and interesction bugs in STC-S
- Loading branch information
Showing
12 changed files
with
319 additions
and
29 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
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
|
||
[package] | ||
name = "moc" | ||
version = "0.12.0" | ||
version = "0.12.1" | ||
authors = [ | ||
"F.-X. Pineau <[email protected]>", | ||
"Matthieu Baumann <[email protected]>" | ||
|
@@ -51,7 +51,7 @@ exclude = ["crates/wasm"] | |
num = "0.4.1" | ||
nom = "7.1.3" | ||
quick-error = "2.0.1" | ||
healpix = { package = "cdshealpix", version = "0.6.6" } | ||
healpix = { package = "cdshealpix", version = "0.6.7" } | ||
mapproj = "0.3" | ||
serde_json = "1.0" | ||
byteorder = "1.4.3" | ||
|
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
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 = "moc-cli" | ||
version = "0.8.0" | ||
version = "0.8.1" | ||
authors = ["F.-X. Pineau <[email protected]>"] | ||
description = "Command-line to create and manipulate HEALPix Multi-Order Coverages maps (MOCs)" | ||
license = "MIT OR Apache-2.0" | ||
|
@@ -24,7 +24,7 @@ test = false | |
moclib = { package = "moc", path = "../.." } | ||
num = "0.4" | ||
structopt = "0.3" | ||
healpix = { package = "cdshealpix", version = "0.6.3" } | ||
healpix = { package = "cdshealpix", version = "0.6.7" } | ||
mapproj = "0.3.0" | ||
rayon = "1.5.1" | ||
time = { version = "0.3.3", features = ["parsing"] } | ||
|
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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 = "moc-set" | ||
version = "0.8.0" | ||
version = "0.8.1" | ||
authors = ["F.-X. Pineau <[email protected]>"] | ||
description = "command-line tool to build, update and query a persistent set of HEALPix Multi-Order Coverages maps (MOCs)" | ||
license = "MIT OR Apache-2.0" | ||
|
@@ -22,7 +22,7 @@ test = false | |
|
||
[dependencies] | ||
moclib = { package = "moc", path = "../.." } | ||
cdshealpix = "0.6.3" | ||
cdshealpix = "0.6.7" | ||
memmap = { package = "memmap2", version = "0.5" } | ||
clap = { version = "4.4", features = ["derive"] } | ||
byteorder = "1" | ||
|
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
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 = "moc-wasm" | ||
version = "0.8.0" | ||
version = "0.8.1" | ||
authors = ["F.-X. Pineau <[email protected]>"] | ||
description = """ | ||
WASM library to create and manipulate HEALPix | ||
|
@@ -22,7 +22,7 @@ crate-type = ["cdylib", "rlib"] | |
|
||
[dependencies] | ||
moclib = { package = "moc", path = "../..", features = ["storage"] } | ||
healpix = { package = "cdshealpix", version = "0.6.3" } | ||
healpix = { package = "cdshealpix", version = "0.6.7" } | ||
serde = { version = "1.0.80", features = ["derive"] } | ||
wasm-bindgen = { version = "0.2.78", features = ["serde-serialize"] } | ||
wasm-bindgen-futures = "0.4.28" | ||
|
Oops, something went wrong.