aboutsummaryrefslogtreecommitdiff
path: root/macros/Cargo.toml
diff options
context:
space:
mode:
authorMax Audron <audron@cocaine.farm>2025-05-06 16:17:35 +0200
committerMax Audron <audron@cocaine.farm>2025-05-06 16:19:30 +0200
commitb6350162b4c70abb896613e4ebea65ca1661450d (patch)
tree2e55e0477b4d2f7a646a97f92ee1362db769f75e /macros/Cargo.toml
parentadd nix build and module (diff)
update dependencies
Diffstat (limited to 'macros/Cargo.toml')
-rw-r--r--macros/Cargo.toml8
1 files changed, 5 insertions, 3 deletions
diff --git a/macros/Cargo.toml b/macros/Cargo.toml
index 59cfd73..cdba18d 100644
--- a/macros/Cargo.toml
+++ b/macros/Cargo.toml
@@ -13,16 +13,18 @@ documentation = "https://docs.rs/catinator_macros"
proc-macro = true
[dependencies]
-syn = { version = "1", features = ["parsing"] }
+syn = { version = "2", features = ["full"] }
proc-macro2 = "1"
quote = "1"
[dev-dependencies]
tokio = "1"
futures = "0"
-irc = { version = "0.15", features = ["json", "tls-rust"], default_features = false }
+irc = { version = "1", features = [
+ "json",
+ "tls-rust",
+], default-features = false }
tracing = "0"
anyhow = "1"
regex = "1"
catinator = { path = "../" }
-