-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
36 lines (33 loc) · 1.17 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[workspace]
members = ["crates/*"]
resolver = "2"
[workspace.package]
edition = "2021"
license = "MIT"
homepage = "https://github.com/JackKelly/hypergrib"
repository = "https://github.com/JackKelly/hypergrib"
readme = "README.md"
authors = ["Jack Kelly <[email protected]>"]
categories = ["science", "science::geo", "parser-implementations"]
keywords = ["GRIB", "weather", "meteorology", "climate", "oceanography"]
[workspace.dependencies] # In alphabetical order
anyhow = "1.0"
bytes = "1.9"
chrono = { version = "0.4", default-features = false, features = ["std"] }
clap = "4.5" # parse command line arguments etc.
csv = "1.3"
derive_more = { version = "1.0", features = ["display"]}
futures-util = "0.3"
gribberish = { git = "https://github.com/mpiannucci/gribberish.git" }
glob = "0.3"
hypergrib = { version = "0.0", path = "crates/hypergrib" }
indicatif = "0.17" # progress bars etc.
list_with_depth = "0.1"
object_store = "0.11"
regex = "1.11"
serde = { version = "1.0", features = ["serde_derive"] }
thiserror = "2.0"
tokio = { version = "1.42", features = ["rt-multi-thread"]}
url = "2.5"
[profile.bench]
debug = true # Enable debuginfo when profiling with cargo flamegraph.