Skip to content

Commit

Permalink
Restrict chrono dependency to fix arrow build
Browse files Browse the repository at this point in the history
  • Loading branch information
mwylde committed Mar 1, 2025
1 parent caf673e commit 87c6fe1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
3 changes: 2 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crates/arroyo-api/src/udfs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ use std::sync::Arc;
use tonic::transport::Channel;
use tracing::error;

const PLUGIN_VERSION: &str = "=0.2.0";
const PLUGIN_VERSION: &str = "^0.2.0";

const LOCAL_UDF_LIB_CRATE: &str = concat!(
env!("CARGO_MANIFEST_DIR"),
Expand Down
5 changes: 3 additions & 2 deletions crates/arroyo-udf/arroyo-udf-common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "arroyo-udf-common"
version = "0.2.0"
version = "0.2.1"
edition = "2021"
authors = ["Arroyo Systems <[email protected]>"]
license = "MIT OR Apache-2.0"
Expand All @@ -19,4 +19,5 @@ tokio = { version = "1", features = ["time", "sync"] }
syn = { version = "2", features = ["full"] }
anyhow = "1.0.82"
regex = "1.10.3"
serde = { version = "1.0.197", features = ["derive"] }
serde = { version = "1.0.197", features = ["derive"] }
chrono = ">=0.4.34,<0.4.40"

0 comments on commit 87c6fe1

Please sign in to comment.