Skip to content

Commit 88dc37c

Browse files
committed
fix: maybe?
1 parent 3dbac58 commit 88dc37c

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

Cargo.lock

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,16 +27,16 @@ serde_json = "1.0.138"
2727
stac = { features = [
2828
"geoparquet-compression",
2929
"object-store-all",
30-
], git = "https://github.com/stac-utils/stac-rs" }
30+
], git = "https://github.com/stac-utils/stac-rs", branch = "optional-tracing-cli" }
3131
stac-api = { features = [
3232
"client",
3333
"python",
34-
], git = "https://github.com/stac-utils/stac-rs" }
34+
], git = "https://github.com/stac-utils/stac-rs", branch = "optional-tracing-cli" }
3535
stac-cli = { git = "https://github.com/stac-utils/stac-rs", features = [
3636
"pgstac",
3737
"duckdb",
38-
] }
39-
stac-duckdb = { git = "https://github.com/stac-utils/stac-rs" }
38+
], branch = "optional-tracing-cli" }
39+
stac-duckdb = { git = "https://github.com/stac-utils/stac-rs", branch = "optional-tracing-cli" }
4040
thiserror = "2.0.11"
4141
tokio = { version = "1.43.0", features = ["rt-multi-thread"] }
4242
pyo3-log = "0.12.1"

src/cli.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ pub fn main(py: Python<'_>) -> PyResult<i64> {
1515
.build()
1616
.unwrap()
1717
.block_on(async {
18-
match args.run().await {
18+
match args.run(false).await {
1919
Ok(()) => 0,
2020
Err(err) => {
2121
eprintln!("ERROR: {}", err);

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![deny(unused_crate_dependencies)]
1+
#![warn(unused_crate_dependencies)]
22

33
mod arrow;
44
mod cli;

0 commit comments

Comments
 (0)