ruma-bot

git clone git://archive.git.mtrnord.blog/MTRNord/ruma-bot.git
Log | Files | Refs

commit 5da6ade6cb2a19f72f77881abe6e604db43266ac
parent 84dd9264eb21e4584f53663b969e03329d3a861e
Author: Jonas Platte <jplatte+git@posteo.de>
Date:   Sun,  4 Aug 2019 16:43:56 +0200

Rename sub-crate

Diffstat:
MCargo.toml | 4++--
Dmacro/Cargo.toml | 17-----------------
Amacros/Cargo.toml | 17+++++++++++++++++
Rmacro/src/args.rs -> macros/src/args.rs | 0
Rmacro/src/lib.rs -> macros/src/lib.rs | 0
5 files changed, 19 insertions(+), 19 deletions(-)

diff --git a/Cargo.toml b/Cargo.toml @@ -14,8 +14,8 @@ hyper-tls = { git = "https://github.com/hyperium/hyper-tls" } ruma-client = { path = "../ruma-client" } url = "2.0.0" -[dependencies.ruma-bot-macro] -path = "macro" +[dependencies.ruma-bot-macros] +path = "macros" [dev-dependencies.tokio] git = "https://github.com/tokio-rs/tokio" diff --git a/macro/Cargo.toml b/macro/Cargo.toml @@ -1,16 +0,0 @@ -[package] -name = "ruma-bot-macro" -version = "0.1.0" -authors = ["Jonas Platte <jplatte+git@posteo.de>"] -edition = "2018" - -[lib] -proc-macro = true - -[dependencies] -proc-macro2 = "0.4.30" -quote = "0.6.13" - -[dependencies.syn] -version = "0.15.40" -features = ["full", "extra-traits"] -\ No newline at end of file diff --git a/macros/Cargo.toml b/macros/Cargo.toml @@ -0,0 +1,16 @@ +[package] +name = "ruma-bot-macros" +version = "0.1.0" +authors = ["Jonas Platte <jplatte+git@posteo.de>"] +edition = "2018" + +[lib] +proc-macro = true + +[dependencies] +proc-macro2 = "0.4.30" +quote = "0.6.13" + +[dependencies.syn] +version = "0.15.42" +features = ["full", "extra-traits"] +\ No newline at end of file diff --git a/macro/src/args.rs b/macros/src/args.rs diff --git a/macro/src/lib.rs b/macros/src/lib.rs