|
1 | 1 | [package]
|
2 | 2 | name = "jsonrpsee"
|
3 |
| -description = "JSON-RPC crate" |
4 |
| -version = "0.16.2" |
5 |
| -authors = [ "Parity Technologies <[email protected]>", "Pierre Krieger <[email protected]>"] |
6 |
| -license = "MIT" |
7 |
| -edition = "2021" |
8 |
| -repository = "https://github.com/paritytech/jsonrpsee" |
9 |
| -homepage = "https://github.com/paritytech/jsonrpsee" |
10 |
| -documentation = "https://docs.rs/jsonrpsee" |
| 3 | +description = "JSON-RPC client/server framework" |
| 4 | +version.workspace = true |
| 5 | +authors.workspace = true |
| 6 | +edition.workspace = true |
| 7 | +rust-version.workspace = true |
| 8 | +license.workspace = true |
| 9 | +repository.workspace = true |
| 10 | +documentation.workspace = true |
| 11 | +homepage.workspace = true |
| 12 | +keywords.workspace = true |
| 13 | +readme.workspace = true |
| 14 | +publish = true |
11 | 15 |
|
12 | 16 | [dependencies]
|
13 | 17 | # No support for namespaced features yet so workspace dependencies are prefixed with `jsonrpsee-`.
|
14 | 18 | # See https://github.com/rust-lang/cargo/issues/5565 for more details.
|
15 |
| -jsonrpsee-http-client = { path = "../client/http-client", version = "0.16.2", optional = true } |
16 |
| -jsonrpsee-ws-client = { path = "../client/ws-client", version = "0.16.2", optional = true } |
17 |
| -jsonrpsee-wasm-client = { path = "../client/wasm-client", version = "0.16.2", optional = true } |
18 |
| -jsonrpsee-client-transport = { path = "../client/transport", version = "0.16.2", optional = true } |
19 |
| -jsonrpsee-server = { path = "../server", version = "0.16.2", optional = true } |
20 |
| -jsonrpsee-proc-macros = { path = "../proc-macros", version = "0.16.2", optional = true } |
21 |
| -jsonrpsee-core = { path = "../core", version = "0.16.2", optional = true } |
22 |
| -jsonrpsee-types = { path = "../types", version = "0.16.2", optional = true } |
| 19 | +jsonrpsee-http-client = { workspace = true, optional = true } |
| 20 | +jsonrpsee-ws-client = { workspace = true, optional = true } |
| 21 | +jsonrpsee-wasm-client = { workspace = true, optional = true } |
| 22 | +jsonrpsee-client-transport = { workspace = true, optional = true } |
| 23 | +jsonrpsee-server = { workspace = true, optional = true } |
| 24 | +jsonrpsee-proc-macros = { workspace = true, optional = true } |
| 25 | +jsonrpsee-core = { workspace = true, optional = true } |
| 26 | +jsonrpsee-types = { workspace = true, optional = true } |
23 | 27 | tracing = { version = "0.1.34", optional = true }
|
24 | 28 |
|
25 | 29 | [features]
|
|
0 commit comments