-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
49 lines (44 loc) · 1.88 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[package]
name = "lagoss-serverless"
version = "0.1.0"
edition = "2021"
[dependencies]
hyper = { version = "0.14.27", features = ["server", "http1", "runtime", "stream"] }
tokio = { version = "1", features = ["rt-multi-thread", "sync", "time", "macros", "signal"] }
tokio-util = { version = "0.7.8", features = ["rt"] }
lagoss-runtime = { path = "../runtime" }
lagoss-runtime-http = { path = "../runtime_http" }
lagoss-runtime-isolate = { path = "../runtime_isolate" }
lagoss-runtime-utils = { path = "../runtime_utils" }
lagoss-serverless-logger = { path = "../serverless_logger" }
lagoss-serverless-downloader = { path = "../serverless_downloader" }
lagoss-serverless-pubsub = { path = "../serverless_pubsub" }
flume = "0.10.14"
dotenv = "0.15.0"
serde_json = "1.0"
metrics = "0.21.1"
metrics-exporter-prometheus = { version = "0.12.1", default-features = false, features = ["http-listener"] }
log = { version = "0.4.19", features = ["std", "kv_unstable", "kv_unstable_serde"] }
anyhow = "1.0.72"
tokio-cron-scheduler = "0.9.4"
# TODO: use a specific version of dashmap when the inline feature is released
dashmap = { git = "https://github.com/xacrimon/dashmap.git", rev = "7f9522c5286cfbbb78df15f00f87b8331cb875d6", features = ["inline"] }
futures = "0.3.28"
clickhouse = "0.11.6"
bytes = "1.4.0"
serde = { version = "1.0", features = ["derive"] }
uuid = { version = "1.4.0", features = ["v4", "fast-rng"] }
reqwest = { version = "0.11.18", default-features = false, features = ["rustls-tls"] }
# Jemalloc does not work on Windows
[target.'cfg(not(target_env = "msvc"))'.dependencies]
tikv-jemallocator = "0.5"
[build-dependencies]
lagoss-runtime = { path = "../runtime" }
lagoss-runtime-isolate = { path = "../runtime_isolate" }
flume = "0.10.14"
[dev-dependencies]
serial_test = "2.0.0"
clickhouse = { version = "0.11.5", features = ["test-util"] }
[features]
default = []
test = ["lagoss-runtime-utils/test"]