forked from parseablehq/parseable
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: update deps and improve readability of
Cargo.toml
(parseable…
…hq#1075) * chore: update datafusion to v44.0.0 * chore: update `object_store` to v0.11.2 Fixes included are mentioned in https://github.com/alamb/arrow-rs/blob/de87e2e7c0c9f4e3f8fe120c803ee3c0cb38f1d4/object_store/CHANGELOG.md * style: organize deps better for maintainability * style: fmt dep * ci: use compatible version of rust * chore: up MSRV to 1.83.0 --------- Signed-off-by: Nitish Tiwari <[email protected]> Co-authored-by: Nitish Tiwari <[email protected]>
- Loading branch information
Showing
10 changed files
with
369 additions
and
230 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,46 +3,85 @@ name = "parseable" | |
version = "1.7.0" | ||
authors = ["Parseable Team <[email protected]>"] | ||
edition = "2021" | ||
rust-version = "1.77.1" | ||
rust-version = "1.83.0" | ||
categories = ["logging", "observability", "log analytics"] | ||
build = "build.rs" | ||
|
||
[dependencies] | ||
### apache arrow/datafusion dependencies | ||
arrow = "53.0.0" | ||
arrow-schema = { version = "53.0.0", features = ["serde"] } | ||
# Arrow and DataFusion ecosystem | ||
arrow-array = { version = "53.0.0" } | ||
arrow-json = "53.0.0" | ||
arrow-flight = { version = "53.0.0", features = ["tls"] } | ||
arrow-ipc = { version = "53.0.0", features = ["zstd"] } | ||
arrow-json = "53.0.0" | ||
arrow-schema = { version = "53.0.0", features = ["serde"] } | ||
arrow-select = "53.0.0" | ||
datafusion = "42.0.0" | ||
object_store = { version = "0.11.1", features = ["cloud", "aws", "azure"] } | ||
datafusion = "44.0.0" | ||
object_store = { version = "0.11.2", features = ["cloud", "aws", "azure"] } | ||
parquet = "53.0.0" | ||
arrow-flight = { version = "53.0.0", features = ["tls"] } | ||
tonic = { version = "0.12.3", features = ["tls", "transport", "gzip", "zstd"] } | ||
tonic-web = "0.12.3" | ||
tower-http = { version = "0.6.1", features = ["cors"] } | ||
|
||
### actix dependencies | ||
actix-web-httpauth = "0.8" | ||
actix-web = { version = "4.9.0", features = ["rustls-0_22"] } | ||
# Web server and HTTP-related | ||
actix-cors = "0.7.0" | ||
actix-web = { version = "4.9.0", features = ["rustls-0_22"] } | ||
actix-web-httpauth = "0.8" | ||
actix-web-prometheus = { version = "0.1" } | ||
actix-web-static-files = "4.0" | ||
http = "0.2.7" | ||
http-auth-basic = "0.3.3" | ||
mime = "0.3.17" | ||
tonic = { version = "0.12.3", features = ["tls", "transport", "gzip", "zstd"] } | ||
tonic-web = "0.12.3" | ||
tower-http = { version = "0.6.1", features = ["cors"] } | ||
url = "2.4.0" | ||
|
||
### other dependencies | ||
anyhow = { version = "1.0", features = ["backtrace"] } | ||
# Authentication and Security | ||
argon2 = "0.5.0" | ||
async-trait = "0.1.82" | ||
base64 = "0.22.0" | ||
lazy_static = "1.4" | ||
bytes = "1.4" | ||
byteorder = "1.4.3" | ||
bzip2 = { version = "*", features = ["static"] } | ||
cookie = "0.18.1" | ||
hex = "0.4" | ||
openid = { version = "0.15.0", default-features = false, features = ["rustls"] } | ||
rustls = "0.22.4" | ||
rustls-pemfile = "2.1.2" | ||
sha2 = "0.10.8" | ||
|
||
# Serialization and Data Formats | ||
byteorder = "1.4.3" | ||
prost = "0.13.3" | ||
serde = { version = "1.0", features = ["rc", "derive"] } | ||
serde_json = "1.0" | ||
serde_repr = "0.1.17" | ||
|
||
# Async and Runtime | ||
async-trait = "0.1.82" | ||
futures = "0.3" | ||
futures-util = "0.3.28" | ||
tokio = { version = "1.28", default-features = false, features = [ | ||
"sync", | ||
"macros", | ||
"fs", | ||
] } | ||
tokio-stream = { version = "0.1", features = ["fs"] } | ||
|
||
# Logging and Metrics | ||
opentelemetry-proto = { git = "https://github.com/parseablehq/opentelemetry-rust", branch = "fix-metrics-u64-serialization" } | ||
prometheus = { version = "0.13", features = ["process"] } | ||
prometheus-parse = "0.2.5" | ||
tracing = "0.1.41" | ||
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] } | ||
|
||
# Time and Date | ||
chrono = "0.4" | ||
chrono-humanize = "0.2" | ||
humantime = "2.1.0" | ||
humantime-serde = "1.1" | ||
|
||
# File System and I/O | ||
bzip2 = { version = "*", features = ["static"] } | ||
fs_extra = "1.3" | ||
path-clean = "1.0.1" | ||
relative-path = { version = "1.7", features = ["serde"] } | ||
xz2 = { version = "*", features = ["static"] } | ||
|
||
# CLI and System | ||
clap = { version = "4.1", default-features = false, features = [ | ||
"std", | ||
"color", | ||
|
@@ -52,73 +91,50 @@ clap = { version = "4.1", default-features = false, features = [ | |
"cargo", | ||
"error-context", | ||
] } | ||
clokwerk = "0.4" | ||
crossterm = "0.28.1" | ||
derive_more = "0.99.18" | ||
fs_extra = "1.3" | ||
futures = "0.3" | ||
futures-util = "0.3.28" | ||
hex = "0.4" | ||
hostname = "0.4.0" | ||
http = "0.2.7" | ||
humantime-serde = "1.1" | ||
itertools = "0.13.0" | ||
human-size = "0.4" | ||
num_cpus = "1.15" | ||
sysinfo = "0.31.4" | ||
thread-priority = "1.0.0" | ||
uptime_lib = "0.3.0" | ||
|
||
# Kafka | ||
rdkafka = { version = "0.36.2", default-features = false, features = ["tokio"] } | ||
|
||
# Utility Libraries | ||
anyhow = { version = "1.0", features = ["backtrace"] } | ||
bytes = "1.4" | ||
clokwerk = "0.4" | ||
derive_more = "0.99.18" | ||
hashlru = { version = "0.11.0", features = ["serde"] } | ||
itertools = "0.13.0" | ||
lazy_static = "1.4" | ||
nom = "7.1.3" | ||
once_cell = "1.17.1" | ||
opentelemetry-proto = {git = "https://github.com/parseablehq/opentelemetry-rust", branch="fix-metrics-u64-serialization"} | ||
prometheus = { version = "0.13", features = ["process"] } | ||
rand = "0.8.5" | ||
regex = "1.7.3" | ||
relative-path = { version = "1.7", features = ["serde"] } | ||
reqwest = { version = "0.11.27", default-features = false, features = [ | ||
"rustls-tls", | ||
"json", | ||
"gzip", | ||
"brotli", | ||
] } # cannot update cause rustls is not latest `see rustls` | ||
rustls = "0.22.4" # cannot update to 0.23 actix has not caught up yet | ||
rustls-pemfile = "2.1.2" | ||
semver = "1.0" | ||
serde = { version = "1.0", features = ["rc", "derive"] } | ||
serde_json = "1.0" | ||
static-files = "0.2" | ||
sysinfo = "0.31.4" | ||
thiserror = "2.0.0" | ||
thread-priority = "1.0.0" | ||
tokio = { version = "1.28", default-features = false, features = [ | ||
"sync", | ||
"macros", | ||
"fs", | ||
] } | ||
tokio-stream = { version = "0.1", features = ["fs"] } | ||
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] } | ||
ulid = { version = "1.0", features = ["serde"] } | ||
uptime_lib = "0.3.0" | ||
xxhash-rust = { version = "0.8", features = ["xxh3"] } | ||
xz2 = { version = "*", features = ["static"] } | ||
nom = "7.1.3" | ||
humantime = "2.1.0" | ||
human-size = "0.4" | ||
openid = { version = "0.15.0", default-features = false, features = ["rustls"] } | ||
url = "2.4.0" | ||
http-auth-basic = "0.3.3" | ||
serde_repr = "0.1.17" | ||
hashlru = { version = "0.11.0", features = ["serde"] } | ||
path-clean = "1.0.1" | ||
prost = "0.13.3" | ||
prometheus-parse = "0.2.5" | ||
sha2 = "0.10.8" | ||
tracing = "0.1.41" | ||
|
||
[build-dependencies] | ||
cargo_toml = "0.20.1" | ||
prost-build = "0.13.3" | ||
sha1_smol = { version = "1.0", features = ["std"] } | ||
static-files = "0.2" | ||
ureq = "2.6" | ||
url = "2.4.0" | ||
vergen = { version = "8.1", features = ["build", "git", "cargo", "gitcl"] } | ||
zip = { version = "2.2.0", default-features = false, features = ["deflate"] } | ||
url = "2.4.0" | ||
prost-build = "0.13.3" | ||
|
||
[dev-dependencies] | ||
maplit = "1.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ | |
# along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
# build stage | ||
FROM rust:1.77.1-bookworm as builder | ||
FROM rust:1.83.0-bookworm as builder | ||
|
||
LABEL org.opencontainers.image.title="Parseable" | ||
LABEL maintainer="Parseable Team <[email protected]>" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.