-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
43 lines (39 loc) · 1.59 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
37
38
39
40
41
42
43
[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 <jack@openclimatefix.org>"]
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"
# Tell `reqwest` to use `hickory-dns` which provides an async DNS resolver
# and a DNS cache. Without `hickory-dns`, `reqwest` uses the default *blocking*
# DNS resolver, which causes `tokio` to create lots of blocking_threads
# which is expensive and unnecessary. Note that we don't use `reqwest` directly.
# Instead, we use `object_store`, which in turn uses `reqwest`.
reqwest = { version = "0.12", features = ["hickory-dns"] }
[profile.bench]
debug = true # Enable debuginfo when profiling with cargo flamegraph.