-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (34 loc) · 1.14 KB
/
Cargo.toml
File metadata and controls
36 lines (34 loc) · 1.14 KB
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
[workspace]
resolver = "2"
members = ["crates/*", "examples/axum-react/server", "examples/tauri-app/src-tauri"]
[workspace.package]
version = "1.1.0"
edition = "2024"
license = "MIT"
repository = "https://github.com/ahonn/orpc-rs"
[workspace.dependencies]
base64 = "0.22"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
erased-serde = "0.4"
futures-core = "0.3"
thiserror = "2"
pin-project-lite = "0.2"
tokio = { version = "1", features = ["rt", "macros"] }
futures-util = "0.3"
orpc-procedure = { path = "crates/orpc-procedure", version = "1.1.0" }
orpc = { path = "crates/orpc", version = "1.1.0" }
orpc-server = { path = "crates/orpc-server", version = "1.1.0" }
http = "1"
axum = "0.8"
tower = { version = "0.5", features = ["util"] }
http-body-util = "0.1"
bytes = "1"
specta = { version = "=2.0.0-rc.22", features = ["derive"] }
specta-typescript = "0.0.9"
specta-serde = "0.0.9"
multer = "3"
reqwest = { version = "0.12", features = ["json", "stream"] }
orpc-client = { path = "crates/orpc-client", version = "1.1.0" }
orpc-macros = { path = "crates/orpc-macros", version = "1.1.0" }
tauri = { version = "2", default-features = false }