mirror of
https://github.com/Start9Labs/rpc-toolkit.git
synced 2026-03-30 20:24:48 +00:00
prep for publish
This commit is contained in:
4
Cargo.lock
generated
4
Cargo.lock
generated
@@ -732,7 +732,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rpc-toolkit-macro"
|
name = "rpc-toolkit-macro"
|
||||||
version = "0.1.0"
|
version = "0.2.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
"rpc-toolkit-macro-internals",
|
"rpc-toolkit-macro-internals",
|
||||||
@@ -741,7 +741,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rpc-toolkit-macro-internals"
|
name = "rpc-toolkit-macro-internals"
|
||||||
version = "0.1.0"
|
version = "0.2.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
"quote",
|
"quote",
|
||||||
|
|||||||
@@ -2,10 +2,12 @@
|
|||||||
authors = ["Aiden McClelland <me@drbonez.dev>"]
|
authors = ["Aiden McClelland <me@drbonez.dev>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
name = "rpc-toolkit-macro-internals"
|
name = "rpc-toolkit-macro-internals"
|
||||||
version = "0.1.0"
|
version = "0.2.0"
|
||||||
|
description = "internals for macros for rpc-toolkit"
|
||||||
|
license = "MIT"
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
[dependencies]
|
[dependencies]
|
||||||
proc-macro2 = "1.0"
|
proc-macro2 = "1.0"
|
||||||
quote = "1.0"
|
quote = "1.0"
|
||||||
syn = { version = "1.0", features = ["fold"] }
|
syn = { version = "1.0", features = ["full", "fold"] }
|
||||||
|
|||||||
@@ -2,7 +2,9 @@
|
|||||||
authors = ["Aiden McClelland <me@drbonez.dev>"]
|
authors = ["Aiden McClelland <me@drbonez.dev>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
name = "rpc-toolkit-macro"
|
name = "rpc-toolkit-macro"
|
||||||
version = "0.1.0"
|
version = "0.2.0"
|
||||||
|
description = "macros for rpc-toolkit"
|
||||||
|
license = "MIT"
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
@@ -11,5 +13,5 @@ proc-macro = true
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
proc-macro2 = "1.0"
|
proc-macro2 = "1.0"
|
||||||
rpc-toolkit-macro-internals = { path = "../rpc-toolkit-macro-internals" }
|
rpc-toolkit-macro-internals = { version = "0.2", path = "../rpc-toolkit-macro-internals" }
|
||||||
syn = "1.0"
|
syn = "1.0"
|
||||||
|
|||||||
@@ -3,6 +3,12 @@ authors = ["Aiden McClelland <me@drbonez.dev>"]
|
|||||||
edition = "2018"
|
edition = "2018"
|
||||||
name = "rpc-toolkit"
|
name = "rpc-toolkit"
|
||||||
version = "0.2.0"
|
version = "0.2.0"
|
||||||
|
description = "A toolkit for creating JSON-RPC 2.0 servers with automatic cli bindings"
|
||||||
|
license = "MIT"
|
||||||
|
documentation = "https://docs.rs/rpc-toolkit"
|
||||||
|
keywords = ["json", "rpc", "cli"]
|
||||||
|
repository = "https://github.com/Start9Labs/rpc-toolkit"
|
||||||
|
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
[features]
|
[features]
|
||||||
@@ -23,11 +29,11 @@ hyper = { version = "0.14", features = [
|
|||||||
lazy_static = "1.4"
|
lazy_static = "1.4"
|
||||||
openssl = { version = "0.10", features = ["vendored"] }
|
openssl = { version = "0.10", features = ["vendored"] }
|
||||||
reqwest = { version = "0.11" }
|
reqwest = { version = "0.11" }
|
||||||
rpc-toolkit-macro = { path = "../rpc-toolkit-macro" }
|
rpc-toolkit-macro = { version = "0.2", path = "../rpc-toolkit-macro" }
|
||||||
serde = { version = "1.0", features = ["derive"] }
|
serde = { version = "1.0", features = ["derive"] }
|
||||||
serde_cbor = { version = "0.11", optional = true }
|
serde_cbor = { version = "0.11", optional = true }
|
||||||
serde_json = "1.0"
|
serde_json = "1.0"
|
||||||
thiserror = "1.0"
|
thiserror = "1.0"
|
||||||
tokio = { version = "1", features = ["full"] }
|
tokio = { version = "1", features = ["full"] }
|
||||||
url = "2.2.2"
|
url = "2.2.2"
|
||||||
yajrc = { version = "*", path = "../yajrc" }
|
yajrc = { version = "0.1", path = "../yajrc" }
|
||||||
|
|||||||
Reference in New Issue
Block a user