-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
441c2a4
commit 49eccc3
Showing
7 changed files
with
16 additions
and
15 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 = "gribberish" | ||
version = "0.21.0" | ||
version = "0.21.1" | ||
authors = ["Matthew Iannucci <[email protected]>"] | ||
description = "Parse grib 2 files with Rust" | ||
edition = "2021" | ||
|
@@ -10,8 +10,8 @@ keywords = ["grib", "weather", "meteorology", "climate", "oceanography"] | |
categories = ["science", "encoding", "compression"] | ||
|
||
[dependencies] | ||
gribberish-types = { path = "../types", version = "0.21.0" } | ||
gribberish-macros = { path = "../macros", version = "0.21.0" } | ||
gribberish-types = { path = "../types", version = "0.21.1" } | ||
gribberish-macros = { path = "../macros", version = "0.21.1" } | ||
chrono = "0.4" | ||
openjpeg-sys = { version = "1.0.3", optional = true } | ||
png = { version = "0.17.2", optional = true } | ||
|
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 = "gribberish-macros" | ||
version = "0.21.0" | ||
version = "0.21.1" | ||
authors = ["Matthew Iannucci <[email protected]>"] | ||
description = "Procedural macros for the gribberish crate" | ||
edition = "2021" | ||
|
@@ -10,7 +10,7 @@ repository = "https://github.com/mpiannucci/gribberish" | |
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
gribberish-types = { path = "./../types", version = "0.21.0" } | ||
gribberish-types = { path = "./../types", version = "0.21.1" } | ||
syn = { version = "1.0", features = ["full"] } | ||
quote = "1.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
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
from .codec import * # noqa |
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 = "gribberish-types" | ||
version = "0.21.0" | ||
version = "0.21.1" | ||
authors = ["Matthew Iannucci <[email protected]>"] | ||
description = "Common types for the gribberish crate" | ||
edition = "2021" | ||
|