-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathCargo.toml
More file actions
66 lines (60 loc) · 1.62 KB
/
Cargo.toml
File metadata and controls
66 lines (60 loc) · 1.62 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
[package]
name = "stac-cli"
description = "Command line interface for stac-rs"
version = "0.5.0"
keywords = ["geospatial", "stac", "metadata", "geo", "raster"]
authors.workspace = true
edition.workspace = true
homepage.workspace = true
repository.workspace = true
license.workspace = true
categories.workspace = true
rust-version.workspace = true
[features]
default = ["pgstac"]
pgstac = ["stac-server/pgstac", "dep:tokio-postgres"]
python = ["dep:pyo3", "pgstac"]
[dependencies]
anyhow.workspace = true
axum.workspace = true
clap = { workspace = true, features = ["derive"] }
duckdb.workspace = true # we depend on it directly so that we can bundle it for the Python wheels
object_store.workspace = true
pyo3 = { workspace = true, optional = true }
reqwest.workspace = true
serde.workspace = true
serde_json.workspace = true
stac = { workspace = true, features = [
"geoparquet-compression",
"object-store-all",
"reqwest",
"validate",
] }
stac-api = { workspace = true, features = ["client"] }
stac-duckdb.workspace = true
stac-server = { workspace = true, features = ["axum"] }
thiserror.workspace = true
tokio = { workspace = true, features = [
"macros",
"io-std",
"rt-multi-thread",
"fs",
] }
tokio-postgres = { workspace = true, optional = true }
tokio-stream.workspace = true
tracing.workspace = true
tracing-subscriber.workspace = true
url.workspace = true
[dev-dependencies]
assert_cmd.workspace = true
rstest.workspace = true
[lib]
crate-type = ["lib", "cdylib"]
[[bin]]
name = "stacrs"
path = "src/main.rs"
doc = false
test = false
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]