Skip to content

Commit

Permalink
use only strictly necessary features
Browse files Browse the repository at this point in the history
  • Loading branch information
Quba1 committed Feb 5, 2024
1 parent 0d1c815 commit 1c00aa2
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,16 @@ edition = "2021"
exclude = [".github/*", ".vscode/*", ".idea/*", "data/*"]

[dependencies]
eccodes-sys = "0.5.2"
libc = "0.2"
thiserror = "1.0"
bytes = "1.5"
log = "0.4"
errno = "0.3"
num-derive = "0.4.1"
num-traits = "0.2"
fallible-iterator = "0.3"
fallible-streaming-iterator = "0.1.9"
eccodes-sys = { version = "0.5.2", default-features = false}
libc = { version = "0.2", default-features = false}
thiserror = { version = "1.0", default-features = false}
bytes = { version = "1.5", default-features = false}
log = { version = "0.4", default-features = false}
errno = { version = "0.3", default-features = false}
num-derive = { version = "0.4.1", default-features = false}
num-traits = { version = "0.2", default-features = false}
fallible-iterator = { version = "0.3", default-features = false}
fallible-streaming-iterator = { version = "0.1.9", default-features = false}
ndarray = { version = "0.15", default-features = false, optional = true, features = ["std"]}

[dev-dependencies]
Expand Down

0 comments on commit 1c00aa2

Please sign in to comment.