Cargo.toml 3.51 KB
Newer Older
1
[package]
2
name = "sglang_router_rs"
3
4
5
version = "0.0.0"
edition = "2021"

6
[features]
7
default = ["grpc-client"]
8
9
grpc-client = []
grpc-server = []
10

11
[lib]
12
name = "sglang_router_rs"
13
14
15
# Pure Rust library: Just omit crate-type (defaults to rlib)
# Python/C binding + Rust library: Use ["cdylib", "rlib"]
crate-type = ["cdylib", "rlib"]
16

17
18
19
20
[[bin]]
name = "sglang-router"
path = "src/main.rs"

21
[dependencies]
22
clap = { version = "4", features = ["derive", "env"] }
23
24
25
axum = { version = "0.8.4", features = ["macros", "ws", "tracing"] }
tower = { version = "0.5", features = ["full"] }
tower-http = { version = "0.6", features = ["trace", "compression-gzip", "cors", "timeout", "limit", "request-id", "util"] }
26
serde = { version = "1.0", features = ["derive"] }
27
28
29
30
serde_json = { version = "1.0", default-features = false, features = [
    "std",
    "preserve_order",
] }
31
bytes = "1.8.0"
32
rand = "0.9.2"
33
reqwest = { version = "0.12.8", features = ["stream", "blocking", "json"] }
34
futures-util = "0.3"
35
futures = "0.3"
36
pyo3 = { version = "0.25.1", features = ["extension-module"] }
37
38
dashmap = "6.1.0"
http = "1.1.0"
39
40
tokio = { version = "1.42.0", features = ["full"] }
async-trait = "0.1"
41
42
43
44
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json", "chrono"] }
tracing-log = "0.2"
tracing-appender = "0.2.3"
45
chrono = "0.4"
46
47
kube = { version = "1.1.0", features = ["runtime", "derive"] }
k8s-openapi = { version = "0.25.0", features = ["v1_33"] }
48
49
metrics = "0.24.2"
metrics-exporter-prometheus = "0.17.0"
50
uuid = { version = "1.10", features = ["v4", "serde"] }
51
52
ulid = "1.2.1"
parking_lot = "0.12.4"
53
thiserror = "2.0.12"
54
regex = "1.10"
55
url = "2.5.4"
56
tokio-stream = { version = "0.1", features = ["sync"] }
57
anyhow = "1.0"
58
59
tokenizers = { version = "0.22.0" }
tiktoken-rs = { version = "0.7.0" }
60
minijinja = { version = "2.0", features = ["unstable_machinery", "json", "builtins"] }
61
rustls = { version = "0.23", default-features = false, features = ["ring", "std"] }
62
hf-hub = { version = "0.4.3", features = ["tokio"] }
63
64
65
66
67
68
69
70
71
rmcp = { version = "0.6.3", features = ["client", "server",
    "transport-child-process",
    "transport-sse-client-reqwest",
    "transport-streamable-http-client-reqwest",
    "transport-streamable-http-server",
    "transport-streamable-http-server-session",
    "reqwest",
    "auth"] }
serde_yaml = "0.9"
72
oracle = { version = "0.6.3", features = ["chrono"] }
73
subtle = "2.6"
74
75
rustpython-parser = "0.4.0"
num-traits = "0.2"
76

77
78
79
80
81
82
83
# gRPC and Protobuf dependencies
tonic = { version = "0.12", features = ["tls", "gzip", "transport"] }
prost = "0.13"
prost-types = "0.13"
deadpool = { version = "0.12", features = ["managed", "rt_tokio_1"] }
backoff = { version = "0.4", features = ["tokio"] }
strum = { version = "0.26", features = ["derive"] }
84
once_cell = "1.21.3"
85
86
87
88
89

[build-dependencies]
tonic-build = "0.12"
prost-build = "0.13"

90
91
[dev-dependencies]
criterion = { version = "0.5", features = ["html_reports"] }
92
93
94
tower = { version = "0.5", features = ["util"] }
http-body-util = "0.1"
portpicker = "0.1"
95
tempfile = "3.8"
96
lazy_static = "1.4"
97
98
99
100
101
102

[[bench]]
name = "request_processing"
harness = false
path = "benches/request_processing.rs"

103
104
105
106
107
[[bench]]
name = "tokenizer_benchmark"
harness = false
path = "benches/tokenizer_benchmark.rs"

Chang Su's avatar
Chang Su committed
108
109
110
111
112
[[bench]]
name = "tool_parser_benchmark"
harness = false
path = "benches/tool_parser_benchmark.rs"

113
114
115
[profile.release]
lto = "thin"
codegen-units = 1
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130

[profile.dev]
opt-level = 0
debug = true
split-debuginfo = "unpacked"
incremental = true


[profile.dev.build-override]
opt-level = 3
codegen-units = 1

[profile.dev-opt]
inherits = "dev"
opt-level = 1