2024-09-04 15:31:05 -07:00
|
|
|
[package]
|
2024-10-16 14:20:26 -07:00
|
|
|
name = "common"
|
2024-09-04 15:31:05 -07:00
|
|
|
version = "0.1.0"
|
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2024-09-17 10:59:50 -07:00
|
|
|
serde_yaml = "0.9.34"
|
2024-09-30 17:49:05 -07:00
|
|
|
duration-string = { version = "0.3.0", features = ["serde"] }
|
2024-10-16 14:20:26 -07:00
|
|
|
proxy-wasm = "0.2.1"
|
|
|
|
|
governor = { version = "0.6.3", default-features = false, features = ["no_std"]}
|
|
|
|
|
log = "0.4"
|
|
|
|
|
derivative = "2.2.0"
|
|
|
|
|
thiserror = "1.0.64"
|
|
|
|
|
tiktoken-rs = "0.5.9"
|
|
|
|
|
rand = "0.8.5"
|
2025-12-17 17:20:19 -08:00
|
|
|
serde_json = { version = "1.0", features = ["preserve_order"] }
|
2024-11-12 11:09:40 -08:00
|
|
|
hex = "0.4.3"
|
2025-02-06 11:00:47 -08:00
|
|
|
urlencoding = "2.1.3"
|
|
|
|
|
url = "2.5.4"
|
2025-06-10 12:53:27 -07:00
|
|
|
hermesllm = { version = "0.1.0", path = "../hermesllm" }
|
2025-07-02 14:08:19 -07:00
|
|
|
serde_with = "3.13.0"
|
2026-02-24 14:34:33 -08:00
|
|
|
hyper = "1.0"
|
|
|
|
|
bytes = "1.0"
|
|
|
|
|
http-body-util = "0.1"
|
2024-09-27 13:33:05 -07:00
|
|
|
|
2025-12-11 15:21:57 -08:00
|
|
|
[features]
|
|
|
|
|
default = []
|
|
|
|
|
|
2024-09-27 13:33:05 -07:00
|
|
|
[dev-dependencies]
|
|
|
|
|
pretty_assertions = "1.4.1"
|
|
|
|
|
serde_json = "1.0.64"
|
2025-12-11 15:21:57 -08:00
|
|
|
serial_test = "3.2"
|
|
|
|
|
axum = "0.7"
|
|
|
|
|
tokio = { version = "1.44", features = ["sync", "time", "macros", "rt"] }
|
2026-02-24 14:34:33 -08:00
|
|
|
hyper = { version = "1.0", features = ["full"] }
|
|
|
|
|
bytes = "1.0"
|
|
|
|
|
http-body-util = "0.1"
|