diff options
Diffstat (limited to '')
| -rw-r--r-- | Cargo.lock | 34 | ||||
| -rw-r--r-- | Cargo.toml | 4 | ||||
| -rw-r--r-- | macros/Cargo.toml | 2 |
3 files changed, 20 insertions, 20 deletions
@@ -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" @@ -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" |
