-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
35 lines (33 loc) · 939 Bytes
/
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
[workspace]
members = ["./crates/qubit-macros"]
exclude = [
"./examples/authentication",
"./examples/chaos",
"./examples/chat-room-react/src-rust",
"./examples/counter",
"./examples/hello-world",
]
[package]
name = "qubit"
version = "0.10.0"
edition = "2021"
authors = ["Tom Anderson <[email protected]>"]
repository = "https://github.com/andogq/qubit"
license = "MIT"
description = "Seamless RPC for Rust & TypeScript"
exclude = ["./client", "./example"]
[dependencies]
axum = "0.7"
futures = "0.3.30"
http = "1.1"
hyper = { version = "1.0", features = ["server"] }
jsonrpsee = { version = "0.23", features = ["server"] }
serde = { version = "1.0.195", features = ["derive"] }
serde_json = "1.0.117"
tokio = { version = "1.38", features = ["rt", "rt-multi-thread"] }
tower = "0.4"
ts-rs = "9.0.1"
qubit-macros = { version = "0.6.4", path = "./crates/qubit-macros" }
trait-variant = "0.1.2"
serde_qs = "0.13.0"
urlencoding = "2.1.3"