-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathCargo.toml
More file actions
104 lines (102 loc) · 2.29 KB
/
Cargo.toml
File metadata and controls
104 lines (102 loc) · 2.29 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
[workspace]
resolver = "2"
members = [
"crates/cli",
"crates/core",
"crates/derive",
"crates/duckdb",
"crates/extensions",
"crates/io",
"crates/pgstac",
"crates/server",
"crates/validate",
"crates/wasm",
]
default-members = [
"crates/core",
"crates/cli",
"crates/derive",
"crates/duckdb",
"crates/extensions",
"crates/io",
"crates/server",
"crates/validate",
]
[workspace.package]
authors = ["Pete Gadomski <pete.gadomski@gmail.com>"]
edition = "2024"
homepage = "https://stac-utils.github.io/rustac"
repository = "https://github.com/stac-utils/rustac"
license = "MIT OR Apache-2.0"
categories = ["science", "data-structures"]
rust-version = "1.88"
[workspace.dependencies]
anyhow = "1.0"
arrow-array = "58.0.0"
arrow-cast = "58.0.0"
arrow-json = "58.0.0"
arrow-schema = "58.0.0"
assert-json-diff = "2.0"
assert_cmd = "2.1"
async-recursion = "1.1.1"
async-stream = "0.3.6"
async-trait = "0.1.89"
axum = "0.8.1"
bb8 = "0.9.0"
bb8-postgres = "0.9.0"
bytes = "1.7"
chrono = "0.4.39"
clap = "4.5"
clap_complete = "4.5"
cql2 = "0.5.0"
duckdb = "1.10501.0"
fluent-uri = "0.4.1"
futures = "0.3.31"
futures-core = "0.3.31"
futures-util = "0.3.31"
geo = "0.32.0"
geo-traits = "0.3.0"
geo-types = "0.7.16"
geoarrow-array = "0.8.0"
geoarrow-schema = "0.8.0"
geojson = "1.0.0"
geoparquet = "0.8.0"
getrandom = { version = "0.4.0", features = ["wasm_js"] }
http = "1.1"
indexmap = { version = "2.10.0", features = ["serde"] }
jsonschema = { version = "0.46.0", default-features = false, features = [
"resolve-async",
] }
libduckdb-sys = "1.3.0"
log = "0.4.25"
mime = "0.3.17"
mockito = "1.5"
object_store = "0.13.0"
parquet = { version = "58.0.0" }
quote = "1.0"
referencing = { version = "0.46.0", features = ["retrieve-async"] }
reqwest = { version = "0.13.1", features = ["query"] }
rstest = "0.26.1"
rustls = "0.23.22"
serde = "1.0"
serde_json = "1.0"
serde_urlencoded = "0.7.1"
syn = "2.0"
tempfile = "3.16"
thiserror = "2.0"
tokio = "1.44"
tokio-postgres = "0.7.12"
tokio-postgres-rustls = "0.13.0"
tokio-stream = "0.1.16"
tokio-test = "0.4.4"
tower = "0.5.1"
tower-http = "0.6.1"
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = [
"env-filter",
"tracing-log",
] }
tracing-indicatif = "0.3.9"
url = "2.3"
webpki-roots = "1.0.0"
wkb = "0.9.0"