openobserve/Cargo.toml

265 lines
7.6 KiB
TOML
Raw Normal View History

2023-02-02 11:33:11 +08:00
[package]
description = "OpenObserve is an observability platform that allows you to capture, search, and analyze your logs, metrics, and traces."
2023-02-02 11:33:11 +08:00
edition = "2021"
2023-06-02 20:05:12 +08:00
homepage = "https://openobserve.ai/"
keywords = [
"search",
"log",
"metrics",
"traces",
"analytics",
2023-11-10 22:56:11 +08:00
"openobserve",
"observability",
"open source",
"open-source",
"opensource",
]
2023-11-27 03:44:33 +08:00
license = "AGPL-3.0"
name = "openobserve"
repository = "https://github.com/openobserve/openobserve/"
version = "0.8.0"
publish = false
2023-02-02 11:33:11 +08:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
2023-02-06 22:07:01 +08:00
mimalloc = ["dep:mimalloc"]
2023-05-26 11:19:14 +08:00
jemalloc = ["dep:tikv-jemallocator"]
profiling = ["dep:pyroscope", "dep:pyroscope_pprofrs"]
2023-02-02 11:33:11 +08:00
[profile.release]
debug = false
strip = true
[profile.release-prod]
inherits = "release"
codegen-units = 1
lto = "thin"
[profile.release-profiling]
inherits = "release"
debug = true
strip = false
codegen-units = 4
2023-02-02 11:33:11 +08:00
[dependencies]
2023-04-13 17:59:49 +08:00
actix-cors = "0.6"
2023-10-18 21:09:24 +08:00
actix-multipart = { version = "0.6", features = ["derive"] }
2023-08-30 14:31:14 +08:00
actix-web = "4.4"
2023-02-02 11:33:11 +08:00
actix-web-httpauth = "0.8"
2023-11-17 12:21:33 +08:00
actix-web-lab = "0.20"
actix-web-opentelemetry = { version = "0.16", features = ["metrics"] }
2023-04-13 17:59:49 +08:00
actix-web-prometheus = { version = "0.1", features = ["process"] }
actix-web-rust-embed-responder = { version = "2.2", default-features = false, features = [
"support-rust-embed-for-web",
"base64",
] }
ahash = { version = "0.8", features = ["serde"] }
anyhow = "1.0"
2023-11-17 12:21:33 +08:00
argon2 = { version = "0.5", features = ["alloc", "password-hash"] }
2023-04-13 17:59:49 +08:00
async-trait = "0.1"
2023-05-10 23:18:23 +08:00
async-recursion = "1.0"
2023-11-17 12:21:33 +08:00
awc = "3.2"
aws-config = "0.56.1"
aws-sdk-dynamodb = "0.30.0"
2023-04-13 17:59:49 +08:00
base64 = "0.21"
blake3 = { version = "1.4", features = ["rayon"] }
bytes = "1.4"
2023-08-25 09:49:30 +08:00
byteorder = "1.4.3"
chrono = { version = "0.4", default-features = false, features = ["clock"] }
2023-04-13 17:59:49 +08:00
clap = { version = "4.1", default-features = false, features = [
"std",
"help",
"usage",
"suggestions",
"cargo",
] }
cloudevents-sdk = { version = "0.7.0", features = ["actix"] }
2023-05-20 16:54:46 +08:00
csv = "1.2.1"
2023-04-13 17:59:49 +08:00
dashmap = { version = "5.4", features = ["serde"] }
2024-01-03 09:45:47 +08:00
datafusion = { git = "https://github.com/openobserve/arrow-datafusion.git", rev = "45e5537ca43d2c2a6e55b9804073b191b337b9e5", version = "34", features = [
"simd",
] }
datafusion-expr = { git = "https://github.com/openobserve/arrow-datafusion.git", rev = "45e5537ca43d2c2a6e55b9804073b191b337b9e5", version = "34" }
arrow = { version = "49", features = ["simd", "ipc_compression"] }
arrow-schema = { version = "49", features = ["serde"] }
parquet = { version = "49", features = ["arrow", "async"] }
object_store = { version = "0.8", features = ["aws", "azure", "gcp"] }
2023-12-22 11:35:46 +08:00
dotenv_config = "0.1.7"
2023-04-13 17:59:49 +08:00
dotenvy = "0.15"
env_logger = "0.10"
2023-11-17 12:21:33 +08:00
etcd-client = { version = "0.12", features = ["tls"] }
2023-09-19 17:43:17 +08:00
faststr = "0.2"
flate2 = { version = "1.0", features = ["zlib"] }
futures = "0.3"
2023-04-13 17:59:49 +08:00
get_if_addrs = "0.5"
glob = "0.3"
2024-01-03 09:45:47 +08:00
hashbrown = { version = "0.14.3", features = ["serde"] }
2023-11-17 12:21:33 +08:00
hashlink = "0.8.4"
hex = "0.4"
2023-04-13 17:59:49 +08:00
http-auth-basic = "0.3"
2023-08-02 22:29:26 +08:00
indexmap = { version = "2.0", features = ["serde"] }
ipnetwork = "0.20"
2023-11-17 12:21:33 +08:00
itertools = "0.12"
2023-12-22 11:35:46 +08:00
jsonwebtoken = "9.2.0"
2023-04-13 17:59:49 +08:00
log = "0.4"
2023-10-18 21:09:24 +08:00
maxminddb = "0.23.0"
2023-04-13 17:59:49 +08:00
memchr = "2.5"
2023-12-28 07:40:22 +08:00
memory-stats = "1.1.0"
mimalloc = { version = "0.1", default-features = false, optional = true }
once_cell = "1.17"
2023-12-22 11:35:46 +08:00
openidconnect = "3.4.0"
opentelemetry = { version = "0.18", features = ["rt-tokio"] }
opentelemetry-otlp = { version = "0.11", features = [
"http-proto",
"serialize",
"reqwest-client",
] }
opentelemetry-proto = { version = "0.2", features = [
"gen-tonic",
"traces",
"logs",
"metrics",
"with-serde",
] }
parking_lot = "0.12"
2023-04-13 17:59:49 +08:00
prometheus = "0.13"
promql-parser = "0.2"
2023-04-13 17:59:49 +08:00
prost = "0.11"
pyroscope = { version = "0.5.6", optional = true }
pyroscope_pprofrs = { version = "0.2.5", optional = true }
2023-04-13 17:59:49 +08:00
rand = "0.8"
2023-11-16 09:29:42 +08:00
getrandom = "0.2.11"
rayon = "1.7.0"
2023-04-13 17:59:49 +08:00
regex = "1.7"
2023-11-17 12:21:33 +08:00
regex-syntax = "0.8"
2023-11-16 09:29:42 +08:00
reqwest = { version = "0.11", default-features = false, features = [
"rustls-tls",
"stream",
] }
2023-04-13 17:59:49 +08:00
rs-snowflake = "0.6"
rust-embed-for-web = "11.1"
segment = "0.2"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
sha256 = "1.4.0"
2023-04-13 17:59:49 +08:00
sled = "0.34"
snap = "1"
2023-12-18 10:49:08 +08:00
sqlparser = { version = "0.40", features = ["serde", "visitor"] }
2023-08-25 09:49:30 +08:00
sqlx = { version = "0.7", features = [
"runtime-tokio-rustls",
"postgres",
"mysql",
2023-08-25 09:49:30 +08:00
"sqlite",
"chrono",
2023-08-25 09:49:30 +08:00
] }
2023-11-17 12:21:33 +08:00
strum = { version = "0.25", features = ["derive"] }
2023-09-08 18:40:31 +08:00
sysinfo = "0.29"
2023-05-11 08:48:24 +08:00
syslog_loose = "0.18.0"
thiserror = "1.0"
2023-04-13 17:59:49 +08:00
time = "0.3"
2023-05-26 11:19:14 +08:00
tikv-jemallocator = { version = "0.5", optional = true }
2023-08-02 22:29:26 +08:00
tempfile = "3"
tokio = { version = "1", features = ["full"] }
tokio-stream = "0.1"
tonic = { version = "0.8", features = ["prost", "gzip"] }
tracing = { version = "0.1.40", features = ["attributes"] }
2023-12-28 07:40:22 +08:00
tracing-appender = "0.2.3"
tracing-opentelemetry = "0.18"
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "json"] }
2023-10-18 21:09:24 +08:00
uaparser = "0.6.1"
url = "2.2"
2023-11-17 12:21:33 +08:00
utoipa = { version = "4", features = ["actix_extras", "openapi_extensions"] }
utoipa-swagger-ui = { version = "4", features = ["actix-web"] }
2023-04-13 17:59:49 +08:00
uuid = { version = "1.2", features = ["v4", "fast-rng", "macro-diagnostics"] }
vector-enrichment = { package = "enrichment", git = "https://github.com/openobserve/vector", rev = "66667dd291482a440c5eb2032ef3cbfb7377b53b" }
2023-12-18 10:49:08 +08:00
vrl = { version = "0.8.1", features = ["value", "compiler", "test"] }
walkdir = "2"
xxhash-rust = { version = "0.8", features = ["xxh3"] }
2023-11-17 12:21:33 +08:00
zstd = "0.13"
2023-12-28 07:40:22 +08:00
config = { path = "src/config" }
ingester = { path = "src/ingester" }
2023-12-22 11:35:46 +08:00
2023-02-02 11:33:11 +08:00
[build-dependencies]
chrono = { version = "0.4", default-features = false, features = ["clock"] }
tonic-build = { version = "0.8", features = ["prost"] }
2023-11-17 12:21:33 +08:00
prost-build = "0.11"
2023-03-29 20:56:30 +08:00
[dev-dependencies]
expect-test = "1.4"
float-cmp = "0.9"
2023-12-28 07:40:22 +08:00
[workspace]
members = ["src/config", "src/ingester", "src/wal"]
resolver = "2"
[workspace.package]
version = "0.1.0"
edition = "2021"
license = "AGPL-3.0"
[workspace.dependencies]
config = { path = "src/config" }
ingester = { path = "src/ingester" }
wal = { path = "src/wal" }
ahash = { version = "0.8", features = ["serde"] }
actix-web = "4.4"
actix-web-prometheus = { version = "0.1", features = ["process"] }
anyhow = "1.0"
argon2 = { version = "0.5", features = ["alloc", "password-hash"] }
async-trait = "0.1"
aws-config = "0.56.1"
aws-sdk-dynamodb = "0.30.0"
base64 = "0.21"
bytes = "1.4"
byteorder = "1.4.3"
chrono = { version = "0.4", default-features = false, features = ["clock"] }
dashmap = { version = "5.4", features = ["serde"] }
arrow = { version = "49", features = ["simd", "ipc_compression"] }
arrow-json = "49"
arrow-schema = { version = "49", features = ["serde"] }
parquet = { version = "49", features = ["arrow", "async"] }
dotenv_config = "0.1.7"
dotenvy = "0.15"
faststr = "0.2"
flate2 = { version = "1.0", features = ["zlib"] }
futures = "0.3"
getrandom = "0.2.11"
hashlink = "0.8.4"
hashbrown = { version = "0.14.3", features = ["serde"] }
hex = "0.4"
indexmap = { version = "2.0", features = ["serde"] }
ipnetwork = "0.20"
itertools = "0.12"
log = "0.4"
once_cell = "1.17"
parking_lot = "0.12"
prometheus = "0.13"
rand = "0.8"
reqwest = { version = "0.11", default-features = false, features = [
"rustls-tls",
"stream",
] }
rs-snowflake = "0.6"
segment = "0.2"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
sha256 = "1.4.0"
snafu = "0.7.5"
snap = "1"
sysinfo = "0.29"
tempfile = "3"
thiserror = "1.0"
tokio = { version = "1", features = ["full"] }
tokio-stream = "0.1"
tracing = { version = "0.1.40", features = ["attributes"] }
tracing-log = "0.2"
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "json"] }
url = "2.2"
utoipa = { version = "4", features = ["actix_extras", "openapi_extensions"] }
uuid = { version = "1.2", features = ["v4", "fast-rng", "macro-diagnostics"] }
walkdir = "2"
xxhash-rust = { version = "0.8", features = ["xxh3"] }
zstd = "0.13"