2023-02-02 11:33:11 +08:00
|
|
|
[package]
|
2023-05-31 11:29:10 +08:00
|
|
|
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/"
|
2023-03-13 16:14:57 +08:00
|
|
|
keywords = [
|
|
|
|
"search",
|
|
|
|
"log",
|
|
|
|
"metrics",
|
|
|
|
"traces",
|
|
|
|
"analytics",
|
|
|
|
"observability",
|
|
|
|
"open source",
|
|
|
|
"open-source",
|
|
|
|
"opensource",
|
|
|
|
]
|
2023-03-07 09:53:34 +08:00
|
|
|
license = "Apache-2.0"
|
2023-05-31 11:29:10 +08:00
|
|
|
name = "openobserve"
|
2023-06-02 18:59:11 +08:00
|
|
|
repository = "https://github.com/openobserve/openobserve/"
|
2023-07-26 19:23:04 +08:00
|
|
|
version = "0.5.2"
|
2023-04-06 15:38:24 +08:00
|
|
|
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"]
|
2023-06-13 12:33:25 +08:00
|
|
|
profiling = ["dep:pyroscope", "dep:pyroscope_pprofrs"]
|
2023-02-02 11:33:11 +08:00
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
debug = false
|
|
|
|
strip = true
|
2023-08-04 13:58:33 +08:00
|
|
|
|
|
|
|
[profile.release-prod]
|
|
|
|
inherits = "release"
|
2023-05-25 13:37:56 +08:00
|
|
|
codegen-units = 1
|
2023-06-17 00:07:23 +08:00
|
|
|
lto = "thin"
|
2023-05-25 13:37:56 +08:00
|
|
|
|
2023-06-13 12:33:25 +08:00
|
|
|
[profile.release-profiling]
|
|
|
|
inherits = "release"
|
2023-06-17 00:07:23 +08:00
|
|
|
debug = true
|
|
|
|
strip = false
|
2023-06-13 12:33:25 +08:00
|
|
|
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-05-20 16:54:46 +08:00
|
|
|
actix-multipart = "0.6.0"
|
2023-03-13 16:14:57 +08:00
|
|
|
actix-web = "4.3"
|
2023-02-02 11:33:11 +08:00
|
|
|
actix-web-httpauth = "0.8"
|
2023-03-13 16:14:57 +08:00
|
|
|
actix-web-opentelemetry = { version = "0.13", 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 = [
|
2023-03-13 16:14:57 +08:00
|
|
|
"support-rust-embed-for-web",
|
|
|
|
"base64",
|
|
|
|
] }
|
2023-03-21 18:40:15 +08:00
|
|
|
ahash = { version = "0.8", features = ["serde"] }
|
2023-02-15 10:21:37 +08:00
|
|
|
anyhow = "1.0"
|
2023-04-13 17:59:49 +08:00
|
|
|
argon2 = { version = "0.4", features = ["alloc", "password-hash"] }
|
|
|
|
async-trait = "0.1"
|
|
|
|
async_once = "0.2"
|
2023-05-10 23:18:23 +08:00
|
|
|
async-recursion = "1.0"
|
2023-04-13 17:59:49 +08:00
|
|
|
awc = "3.1"
|
2023-07-22 00:52:35 +08:00
|
|
|
aws-config = "0.55.3"
|
|
|
|
aws-sdk-dynamodb = "0.28.0"
|
2023-04-13 17:59:49 +08:00
|
|
|
base64 = "0.21"
|
2023-08-02 18:47:09 +08:00
|
|
|
blake3 = { version = "1.4", features = ["rayon"] }
|
2023-03-21 18:40:15 +08:00
|
|
|
bytes = "1.4"
|
2023-04-04 23:41:17 +08:00
|
|
|
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 = [
|
2023-03-13 16:14:57 +08:00
|
|
|
"std",
|
|
|
|
"help",
|
|
|
|
"usage",
|
|
|
|
"suggestions",
|
|
|
|
"cargo",
|
|
|
|
] }
|
2023-06-17 00:07:23 +08:00
|
|
|
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"] }
|
2023-08-02 22:29:26 +08:00
|
|
|
datafusion = { version = "28", features = ["simd"] }
|
|
|
|
arrow = { version = "43", features = ["simd", "ipc_compression"] }
|
|
|
|
arrow-schema = { version = "43", features = ["serde"] }
|
|
|
|
parquet = { version = "43", features = ["arrow", "async"] }
|
2023-04-13 17:59:49 +08:00
|
|
|
dotenv_config = "0.1"
|
|
|
|
dotenvy = "0.15"
|
2023-03-13 16:14:57 +08:00
|
|
|
env_logger = "0.10"
|
2023-07-24 10:07:57 +08:00
|
|
|
etcd-client = { version = "0.11", features = ["tls"] }
|
2023-04-07 10:54:14 +08:00
|
|
|
flate2 = { version = "1.0", features = ["zlib"] }
|
2023-02-15 10:21:37 +08:00
|
|
|
futures = "0.3"
|
2023-04-13 17:59:49 +08:00
|
|
|
get_if_addrs = "0.5"
|
|
|
|
glob = "0.3"
|
2023-05-08 19:49:41 +08:00
|
|
|
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"] }
|
2023-05-30 16:11:07 +08:00
|
|
|
ipnetwork = "0.20"
|
2023-07-11 20:41:16 +08:00
|
|
|
itertools = "0.11"
|
2023-04-13 17:59:49 +08:00
|
|
|
lazy_static = "1.4"
|
|
|
|
log = "0.4"
|
2023-06-16 18:43:12 +08:00
|
|
|
lru = "0.10"
|
2023-04-13 17:59:49 +08:00
|
|
|
memchr = "2.5"
|
2023-03-13 16:14:57 +08:00
|
|
|
mimalloc = { version = "0.1", default-features = false, optional = true }
|
2023-07-11 20:41:16 +08:00
|
|
|
object_store = { version = "0.6", features = [
|
2023-04-15 11:45:12 +08:00
|
|
|
"aws",
|
|
|
|
"azure",
|
|
|
|
"gcp",
|
|
|
|
] }
|
2023-04-13 11:45:18 +08:00
|
|
|
once_cell = "1.17"
|
2023-03-13 16:14:57 +08:00
|
|
|
opentelemetry = { version = "0.18", features = ["rt-tokio"] }
|
|
|
|
opentelemetry-otlp = { version = "0.11", features = [
|
|
|
|
"http-proto",
|
|
|
|
"serialize",
|
|
|
|
"reqwest-client",
|
|
|
|
] }
|
|
|
|
opentelemetry-proto = { version = "0.1", features = [
|
|
|
|
"gen-tonic",
|
|
|
|
"traces",
|
|
|
|
"with-serde",
|
|
|
|
"build-server",
|
|
|
|
] }
|
2023-02-15 10:21:37 +08:00
|
|
|
parking_lot = "0.12"
|
2023-04-13 17:59:49 +08:00
|
|
|
prometheus = "0.13"
|
2023-07-23 22:43:51 +08:00
|
|
|
promql-parser = "0.2"
|
2023-04-13 17:59:49 +08:00
|
|
|
prost = "0.11"
|
2023-06-21 18:20:33 +08:00
|
|
|
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-06-24 00:10:58 +08:00
|
|
|
rayon = "1.7.0"
|
2023-04-13 17:59:49 +08:00
|
|
|
regex = "1.7"
|
|
|
|
regex-syntax = "0.6"
|
2023-03-13 16:14:57 +08:00
|
|
|
reqwest = { version = "0.11", default-features = false, features = [
|
|
|
|
"rustls-tls",
|
|
|
|
] }
|
2023-04-13 17:59:49 +08:00
|
|
|
rs-snowflake = "0.6"
|
|
|
|
rust-embed-for-web = "11.1"
|
|
|
|
segment = "0.2"
|
2023-03-13 16:14:57 +08:00
|
|
|
serde = { version = "1", features = ["derive"] }
|
2023-02-15 10:21:37 +08:00
|
|
|
serde_json = "1"
|
2023-06-17 00:07:23 +08:00
|
|
|
simd-json = "0.10.3"
|
2023-04-13 17:59:49 +08:00
|
|
|
sled = "0.34"
|
2023-02-15 10:21:37 +08:00
|
|
|
snap = "1"
|
2023-08-02 22:29:26 +08:00
|
|
|
sqlparser = { version = "0.35", features = ["serde"] }
|
2023-05-10 23:18:23 +08:00
|
|
|
strum = { version = "0.24", features = ["derive"] }
|
2023-04-13 17:59:49 +08:00
|
|
|
sys-info = "0.9"
|
2023-05-11 08:48:24 +08:00
|
|
|
syslog_loose = "0.18.0"
|
2023-02-15 10:21:37 +08:00
|
|
|
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"
|
2023-03-13 16:14:57 +08:00
|
|
|
tokio = { version = "1", features = ["full"] }
|
2023-07-22 00:52:35 +08:00
|
|
|
tokio-stream = "0.1"
|
2023-03-13 16:14:57 +08:00
|
|
|
tonic = { version = "0.8", features = ["prost", "gzip"] }
|
2023-08-02 22:29:26 +08:00
|
|
|
tracing = { version = "0.1.37", features = ["attributes"] }
|
2023-03-13 16:14:57 +08:00
|
|
|
tracing-opentelemetry = "0.18"
|
2023-05-10 16:58:33 +08:00
|
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
2023-02-15 10:21:37 +08:00
|
|
|
url = "2.2"
|
2023-03-13 16:14:57 +08:00
|
|
|
utoipa = { version = "3", features = ["actix_extras", "openapi_extensions"] }
|
|
|
|
utoipa-swagger-ui = { version = "3", features = ["actix-web"] }
|
2023-04-13 17:59:49 +08:00
|
|
|
uuid = { version = "1.2", features = ["v4", "fast-rng", "macro-diagnostics"] }
|
2023-06-17 00:07:23 +08:00
|
|
|
vector-enrichment = { package = "enrichment", git = "https://github.com/zinclabs/vector", rev = "c110977d421bb7826738faee7d435de783cef561" }
|
|
|
|
vrl = { git = "https://github.com/zinclabs/vrl", rev = "2bbe6728fc0a9d0c20b6ee8634346bdbf28f78d8", features = [
|
|
|
|
"value",
|
|
|
|
] }
|
2023-02-15 10:21:37 +08:00
|
|
|
walkdir = "2"
|
2023-06-21 18:20:33 +08:00
|
|
|
xxhash-rust = { version = "0.8", features = ["xxh3"] }
|
2023-06-17 00:07:23 +08:00
|
|
|
zstd = "0.12"
|
2023-06-21 18:20:33 +08:00
|
|
|
|
2023-02-02 11:33:11 +08:00
|
|
|
[build-dependencies]
|
2023-04-04 23:41:17 +08:00
|
|
|
chrono = { version = "0.4", default-features = false, features = ["clock"] }
|
2023-03-13 17:57:37 +08:00
|
|
|
prost-build = "0.11"
|
2023-03-13 16:14:57 +08:00
|
|
|
tonic-build = { version = "0.8", features = ["prost"] }
|
2023-03-29 20:56:30 +08:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-08-02 22:29:26 +08:00
|
|
|
datafusion-expr = "28"
|
2023-03-31 19:33:34 +08:00
|
|
|
expect-test = "1.4"
|
2023-05-18 11:31:35 +08:00
|
|
|
float-cmp = "0.9"
|