22 lines
578 B
TOML
22 lines
578 B
TOML
[package]
|
|
name = "rspc"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
futures = "0.3"
|
|
tokio = { version = "1.0", features = ["full"] }
|
|
syn = { version = "2.0", features = ["full"] }
|
|
rspc_macros = { path = "macros", version = "0.1" }
|
|
thiserror = "1.0.49"
|
|
async-trait = "0.1.73"
|
|
async-std = "1.12.0"
|
|
tokio-serde = { version = "0.8.0", features=["json","bincode"] }
|
|
pin-project = "1.1.3"
|
|
tokio-util = { version = "0.7.10", features=["codec"] }
|
|
serde_json = "1.0.108"
|
|
oneshot = { version = "0.1.6", features=["std"] }
|
|
|
|
[lib]
|
|
|