-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
35 lines (31 loc) · 895 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 = [
"client",
"core",
"derive",
"server",
"examples/basic_auth",
"examples/hello_world",
"examples/pubsub",
]
resolver = "2"
[workspace.package]
version = "0.1.1"
authors = ["Janosch Gräf <[email protected]>", "The Nimiq Core Development Team <[email protected]>"]
edition = "2021"
homepage = "https://nimiq.com"
repository = "https://github.com/nimiq/jsonrpc"
license = "Apache-2.0"
categories = [
"asynchronous",
"network-programming",
"web-programming::http-client",
"web-programming::http-server",
"web-programming::websocket"
]
keywords = ["json", "jsonrpc", "json-rpc", "nimiq", "rpc"]
[workspace.dependencies]
nimiq-jsonrpc-client = { version = "0.1.1", path = "client" }
nimiq-jsonrpc-core = { version = "0.1.1", path = "core" }
nimiq-jsonrpc-derive = { version = "0.1.1", path = "derive" }
nimiq-jsonrpc-server = { version = "0.1.1", path = "server" }