From 3c55168b72c022b618822c7993b7692f583506db Mon Sep 17 00:00:00 2001 From: hozan23 Date: Sun, 30 Jun 2024 20:03:02 +0200 Subject: jsonrpc: remove redundant macro codes in the main crate and clean up internal proc macros --- jsonrpc/impl/Cargo.toml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 jsonrpc/impl/Cargo.toml (limited to 'jsonrpc/impl/Cargo.toml') diff --git a/jsonrpc/impl/Cargo.toml b/jsonrpc/impl/Cargo.toml new file mode 100644 index 0000000..cf001e1 --- /dev/null +++ b/jsonrpc/impl/Cargo.toml @@ -0,0 +1,26 @@ +[package] +name = "karyon_jsonrpc_macro" +description = "Internal crate for Karyon library." +version.workspace = true +edition.workspace = true +homepage.workspace = true +repository.workspace = true +license.workspace = true +authors.workspace = true + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[lib] +proc-macro = true + +[features] +default = ["smol"] +smol = [] +tokio = [] + +[dependencies] +proc-macro2 = "1.0" +quote = "1.0" +syn = { version = "2.0", features = ["full"] } + +serde_json = "1.0.117" -- cgit v1.2.3