public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc/devel/rust/master] libproc_macro: Move rust interface directory
@ 2023-04-06 21:33 Thomas Schwinge
  0 siblings, 0 replies; only message in thread
From: Thomas Schwinge @ 2023-04-06 21:33 UTC (permalink / raw)
  To: gcc-cvs

https://gcc.gnu.org/g:649833b71ae3594e697f8ef91d5d4e09375627ce

commit 649833b71ae3594e697f8ef91d5d4e09375627ce
Author: Pierre-Emmanuel Patry <pierre-emmanuel.patry@embecosm.com>
Date:   Fri Mar 24 15:25:08 2023 +0100

    libproc_macro: Move rust interface directory
    
    Move libproc_macro's interface to it's final directory.
    
    ChangeLog:
    
            * librust/proc_macro/rust/bridge.rs: Moved to...
            * libgrust/libproc_macro/rust/bridge.rs: ...here.
            * librust/proc_macro/rust/bridge/group.rs: Moved to...
            * libgrust/libproc_macro/rust/bridge/group.rs: ...here.
            * librust/proc_macro/rust/bridge/ident.rs: Moved to...
            * libgrust/libproc_macro/rust/bridge/ident.rs: ...here.
            * librust/proc_macro/rust/bridge/literal.rs: Moved to...
            * libgrust/libproc_macro/rust/bridge/literal.rs: ...here.
            * librust/proc_macro/rust/bridge/punct.rs: Moved to...
            * libgrust/libproc_macro/rust/bridge/punct.rs: ...here.
            * librust/proc_macro/rust/bridge/span.rs: Moved to...
            * libgrust/libproc_macro/rust/bridge/span.rs: ...here.
            * librust/proc_macro/rust/bridge/token_stream.rs: Moved to...
            * libgrust/libproc_macro/rust/bridge/token_stream.rs: ...here.
            * librust/proc_macro/rust/group.rs: Moved to...
            * libgrust/libproc_macro/rust/group.rs: ...here.
            * librust/proc_macro/rust/ident.rs: Moved to...
            * libgrust/libproc_macro/rust/ident.rs: ...here.
            * librust/proc_macro/rust/lib.rs: Moved to...
            * libgrust/libproc_macro/rust/lib.rs: ...here.
            * librust/proc_macro/rust/literal.rs: Moved to...
            * libgrust/libproc_macro/rust/literal.rs: ...here.
            * librust/proc_macro/rust/punct.rs: Moved to...
            * libgrust/libproc_macro/rust/punct.rs: ...here.
            * librust/proc_macro/rust/span.rs: Moved to...
            * libgrust/libproc_macro/rust/span.rs: ...here.
            * librust/proc_macro/rust/token_stream.rs: Moved to...
            * libgrust/libproc_macro/rust/token_stream.rs: ...here.
    
    Signed-off-by: Pierre-Emmanuel Patry <pierre-emmanuel.patry@embecosm.com>

Diff:
---
 {librust/proc_macro => libgrust/libproc_macro}/rust/bridge.rs             | 0
 {librust/proc_macro => libgrust/libproc_macro}/rust/bridge/group.rs       | 0
 {librust/proc_macro => libgrust/libproc_macro}/rust/bridge/ident.rs       | 0
 {librust/proc_macro => libgrust/libproc_macro}/rust/bridge/literal.rs     | 0
 {librust/proc_macro => libgrust/libproc_macro}/rust/bridge/punct.rs       | 0
 {librust/proc_macro => libgrust/libproc_macro}/rust/bridge/span.rs        | 0
 .../proc_macro => libgrust/libproc_macro}/rust/bridge/token_stream.rs     | 0
 {librust/proc_macro => libgrust/libproc_macro}/rust/group.rs              | 0
 {librust/proc_macro => libgrust/libproc_macro}/rust/ident.rs              | 0
 {librust/proc_macro => libgrust/libproc_macro}/rust/lib.rs                | 0
 {librust/proc_macro => libgrust/libproc_macro}/rust/literal.rs            | 0
 {librust/proc_macro => libgrust/libproc_macro}/rust/punct.rs              | 0
 {librust/proc_macro => libgrust/libproc_macro}/rust/span.rs               | 0
 {librust/proc_macro => libgrust/libproc_macro}/rust/token_stream.rs       | 0
 14 files changed, 0 insertions(+), 0 deletions(-)

diff --git a/librust/proc_macro/rust/bridge.rs b/libgrust/libproc_macro/rust/bridge.rs
similarity index 100%
rename from librust/proc_macro/rust/bridge.rs
rename to libgrust/libproc_macro/rust/bridge.rs
diff --git a/librust/proc_macro/rust/bridge/group.rs b/libgrust/libproc_macro/rust/bridge/group.rs
similarity index 100%
rename from librust/proc_macro/rust/bridge/group.rs
rename to libgrust/libproc_macro/rust/bridge/group.rs
diff --git a/librust/proc_macro/rust/bridge/ident.rs b/libgrust/libproc_macro/rust/bridge/ident.rs
similarity index 100%
rename from librust/proc_macro/rust/bridge/ident.rs
rename to libgrust/libproc_macro/rust/bridge/ident.rs
diff --git a/librust/proc_macro/rust/bridge/literal.rs b/libgrust/libproc_macro/rust/bridge/literal.rs
similarity index 100%
rename from librust/proc_macro/rust/bridge/literal.rs
rename to libgrust/libproc_macro/rust/bridge/literal.rs
diff --git a/librust/proc_macro/rust/bridge/punct.rs b/libgrust/libproc_macro/rust/bridge/punct.rs
similarity index 100%
rename from librust/proc_macro/rust/bridge/punct.rs
rename to libgrust/libproc_macro/rust/bridge/punct.rs
diff --git a/librust/proc_macro/rust/bridge/span.rs b/libgrust/libproc_macro/rust/bridge/span.rs
similarity index 100%
rename from librust/proc_macro/rust/bridge/span.rs
rename to libgrust/libproc_macro/rust/bridge/span.rs
diff --git a/librust/proc_macro/rust/bridge/token_stream.rs b/libgrust/libproc_macro/rust/bridge/token_stream.rs
similarity index 100%
rename from librust/proc_macro/rust/bridge/token_stream.rs
rename to libgrust/libproc_macro/rust/bridge/token_stream.rs
diff --git a/librust/proc_macro/rust/group.rs b/libgrust/libproc_macro/rust/group.rs
similarity index 100%
rename from librust/proc_macro/rust/group.rs
rename to libgrust/libproc_macro/rust/group.rs
diff --git a/librust/proc_macro/rust/ident.rs b/libgrust/libproc_macro/rust/ident.rs
similarity index 100%
rename from librust/proc_macro/rust/ident.rs
rename to libgrust/libproc_macro/rust/ident.rs
diff --git a/librust/proc_macro/rust/lib.rs b/libgrust/libproc_macro/rust/lib.rs
similarity index 100%
rename from librust/proc_macro/rust/lib.rs
rename to libgrust/libproc_macro/rust/lib.rs
diff --git a/librust/proc_macro/rust/literal.rs b/libgrust/libproc_macro/rust/literal.rs
similarity index 100%
rename from librust/proc_macro/rust/literal.rs
rename to libgrust/libproc_macro/rust/literal.rs
diff --git a/librust/proc_macro/rust/punct.rs b/libgrust/libproc_macro/rust/punct.rs
similarity index 100%
rename from librust/proc_macro/rust/punct.rs
rename to libgrust/libproc_macro/rust/punct.rs
diff --git a/librust/proc_macro/rust/span.rs b/libgrust/libproc_macro/rust/span.rs
similarity index 100%
rename from librust/proc_macro/rust/span.rs
rename to libgrust/libproc_macro/rust/span.rs
diff --git a/librust/proc_macro/rust/token_stream.rs b/libgrust/libproc_macro/rust/token_stream.rs
similarity index 100%
rename from librust/proc_macro/rust/token_stream.rs
rename to libgrust/libproc_macro/rust/token_stream.rs

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2023-04-06 21:33 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-04-06 21:33 [gcc/devel/rust/master] libproc_macro: Move rust interface directory Thomas Schwinge

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).