-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (33 loc) · 1.03 KB
/
Cargo.toml
File metadata and controls
43 lines (33 loc) · 1.03 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
[package]
name = "seraphic"
license = "MIT OR Apache-2.0"
authors = [ "Void Kandy" ]
version = "0.1.55"
description = "Lightweight JSON RPC 2.0"
homepage="https://github.com/voidKandy/seraphic"
repository="https://github.com/voidKandy/seraphic"
readme="README.md"
keywords = [ "api", "json", "rpc"]
categories= []
edition = "2021"
[lib]
path="src/lib.rs"
[workspace]
members = ["seraphic-derive"]
[features]
default = ["tokio"]
tokio= ["dep:tokio"]
[dev-dependencies]
tracing-subscriber = "0.3.19"
tokio = {version ="1.43.0", features=[ "net", "macros", "rt"]}
[dependencies]
serde_json = "1.0.132"
serde = { version = "1.0.215", features = ["derive"] }
seraphic-derive = { path ="./seraphic-derive/", version="0.1.52"}
# TODO! minimize features here
# + put tokio behind a feature and do a synchronous impl
# tokio = { version = "1.42.0", features = ["full"] }
# TODO! put this behind feature
tracing = { version = "0.1.40", features = ["log"] }
# crossbeam-channel = "0.5.14"
tokio = {version ="1.43.0", optional=true, features=["io-util"]}