aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Audron <audron@cocaine.farm>2021-06-21 09:07:36 +0200
committerMax Audron <audron@cocaine.farm>2021-06-21 09:07:36 +0200
commit805dba3689ec97bd3c9cf52569d49eddf276a851 (patch)
treef716b8c04d770304646948929751f01d93fc3a1d
parentrelease version 1.2.1 (diff)
publish macros subcrate
Diffstat (limited to '')
-rw-r--r--Cargo.lock34
-rw-r--r--Cargo.toml4
-rw-r--r--macros/Cargo.toml2
3 files changed, 20 insertions, 20 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 41b786a..b3ef1ea 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -77,10 +77,10 @@ version = "1.2.1"
dependencies = [
"anyhow",
"base64",
+ "catinator_macros",
"futures",
"irc",
"irc-proto",
- "macros",
"rand",
"regex",
"sasl",
@@ -94,6 +94,22 @@ dependencies = [
]
[[package]]
+name = "catinator_macros"
+version = "0.1.0"
+dependencies = [
+ "anyhow",
+ "catinator",
+ "futures",
+ "irc",
+ "proc-macro2",
+ "quote",
+ "regex",
+ "syn",
+ "tokio",
+ "tracing",
+]
+
+[[package]]
name = "cc"
version = "1.0.67"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -434,22 +450,6 @@ dependencies = [
]
[[package]]
-name = "macros"
-version = "0.1.0"
-dependencies = [
- "anyhow",
- "catinator",
- "futures",
- "irc",
- "proc-macro2",
- "quote",
- "regex",
- "syn",
- "tokio",
- "tracing",
-]
-
-[[package]]
name = "matchers"
version = "0.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
diff --git a/Cargo.toml b/Cargo.toml
index cc2bc9b..55bb9d4 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -5,7 +5,7 @@ authors = ["Max Audron <audron@cocaine.farm>"]
edition = "2018"
[dependencies]
-macros = { path = "./macros" }
+macros = { package = "catinator_macros", version = "0.1", path = "./macros" }
irc = { version = "0.15", features = ["json", "tls-rust", "ctcp"], default_features = false }
irc-proto = "0.15"
@@ -25,7 +25,7 @@ tracing-subscriber = "0.2"
tracing-futures = "0.2"
regex = "1"
-sedregex = { git = "https://gitlab.com/audron/sedregex" }
+sedregex = { version = "0.2", git = "https://gitlab.com/audron/sedregex" }
rand = "0.8.3"
diff --git a/macros/Cargo.toml b/macros/Cargo.toml
index a833e36..c4e57a2 100644
--- a/macros/Cargo.toml
+++ b/macros/Cargo.toml
@@ -1,5 +1,5 @@
[package]
-name = "macros"
+name = "catinator_macros"
version = "0.1.0"
edition = "2018"