From 66647b0af867a09b8b90bd5d1ca5bb45249db470 Mon Sep 17 00:00:00 2001 From: Sehyo Chang Date: Mon, 19 Aug 2024 15:35:52 -0700 Subject: [PATCH] revert nj-derive --- Cargo.toml | 5 ----- nj-derive/Cargo.toml | 14 +++++++------- 2 files changed, 7 insertions(+), 12 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 5119c1e..b606c44 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -34,20 +34,15 @@ ctor = "0.2.4" libc = "0.2.66" http_req = "0.12.0" inventory = "0.1.5" -Inflector = "0.11.4" async-trait = "0.1.22" futures-lite = "2.0.0" num-bigint = "0.4.0" pin-utils = "0.1.0" -proc-macro2 = "1.0" -quote = "1.0" serde_json = "1" serde = { version = "1", default-features = false } -syn = { version = "1.0", default-features = false } structopt = { version = "0.3.18", default-features = false } toml = "0.8.0" tracing = "0.1.37" -trybuild = { git = "https://github.com/infinyon/trybuild", branch = "check_option" } uuid = { version = "1.8.0" } fluvio-future = { version = "0.7.0", default-features = false } diff --git a/nj-derive/Cargo.toml b/nj-derive/Cargo.toml index 0663915..a903a1c 100644 --- a/nj-derive/Cargo.toml +++ b/nj-derive/Cargo.toml @@ -13,12 +13,12 @@ proc-macro = true [dependencies] -proc-macro2 = { workspace = true } -quote = { workspace = true } -syn = { workspace = true, features = ["full", "parsing", "visit-mut","derive","extra-traits"] } -Inflector = { workspace = true } +proc-macro2 = "1.0" +quote = "1.0" +syn = { version = "1.0", features = ["full", "parsing", "visit-mut","derive","extra-traits"] } +Inflector = "0.11.4" [dev-dependencies] -trybuild = { workspace = true } -node-bindgen = { workspace = true } -fluvio-future = { workspace = true, features = ["timer"] } +trybuild = { git = "https://github.com/infinyon/trybuild", branch = "check_option" } +node-bindgen = { path = ".." } +fluvio-future = { version = "0.7.0", features = ["timer"] }