-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (26 loc) · 820 Bytes
/
Cargo.toml
File metadata and controls
28 lines (26 loc) · 820 Bytes
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
[package]
name = "rupy"
version = "0.1.0"
edition = "2021"
[lib]
name = "rupy"
crate-type = ["cdylib"]
[dependencies]
pyo3 = { version = "0.28.0", features = ["extension-module"] }
tokio = { version = "1.42", features = ["full"] }
axum = "0.8.7"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tracing = "0.1.43"
tracing-subscriber = { version = "0.3.22", features = ["json", "env-filter"] }
opentelemetry = "0.31"
opentelemetry_sdk = { version = "0.31", features = ["rt-tokio"] }
opentelemetry-otlp = { version = "0.31", features = ["metrics", "trace", "logs"] }
opentelemetry-semantic-conventions = "0.31"
tracing-opentelemetry = "0.32"
tower-http = { version = "0.6.8", features = ["trace"] }
handlebars = "6.2"
multer = "3.1"
tempfile = "3.17"
futures-util = "0.3"
percent-encoding = "2.3.2"