-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathCargo.toml
More file actions
61 lines (57 loc) · 1.72 KB
/
Copy pathCargo.toml
File metadata and controls
61 lines (57 loc) · 1.72 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[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 = "1.0.0-beta.2"
edition = "2024"
authors = ["Tom Anderson <tom@ando.gq>"]
repository = "https://github.com/andogq/qubit"
license = "MIT"
description = "Seamless RPC for Rust & TypeScript"
exclude = ["./client", "./example"]
[dependencies]
axum = "0.8"
futures = "0.3.31"
http = "1.3"
hyper = { version = "1.6", features = ["server"] }
jsonrpsee = { version = "0.25", features = ["server"] }
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.140"
tokio = { version = "1.44", features = ["rt", "rt-multi-thread"] }
tower = { version = "0.5", features = ["util"] }
ts-rs = { version = "12.0.1", features = [
"serde-compat",
], default-features = false }
qubit-macros = { version = "1.0.0-beta.0", path = "./crates/qubit-macros" }
trait-variant = "0.1.2"
serde_qs = "0.13.0"
urlencoding = "2.1.3"
derive_more = { version = "2.0.1", features = ["deref"] }
linkme = "0.3.33"
lazy_static = "1.5.0"
thiserror = "2.0.12"
[features]
ts-format = ["ts-rs/format"]
ts-serde-json = ["ts-rs/serde-json-impl"]
ts-chrono = ["ts-rs/chrono-impl"]
ts-bigdecimal = ["ts-rs/bigdecimal-impl"]
ts-url = ["ts-rs/url-impl"]
ts-uuid = ["ts-rs/uuid-impl"]
ts-bson-uuid = ["ts-rs/bson-uuid-impl"]
ts-bytes = ["ts-rs/bytes-impl"]
ts-indexmap = ["ts-rs/indexmap-impl"]
ts-ordered-float = ["ts-rs/ordered-float-impl"]
ts-heapless = ["ts-rs/heapless-impl"]
ts-semver = ["ts-rs/semver-impl"]
ts-smol-str = ["ts-rs/smol_str-impl"]
ts-tokio = ["ts-rs/tokio-impl"]
[dev-dependencies]
rstest = "0.25.0"
static_assertions = "1.1.0"