Skip to content
This repository was archived by the owner on May 28, 2025. It is now read-only.

Commit d334502

Browse files
committed
Rename config_proc_macro to rustfmt-config_proc_macro
1 parent 0e3cf08 commit d334502

File tree

6 files changed

+28
-24
lines changed

6 files changed

+28
-24
lines changed

Cargo.lock

Lines changed: 10 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ ignore = "0.4.6"
6060
annotate-snippets = { version = "0.5.0", features = ["ansi_term"] }
6161
structopt = "0.2.15"
6262

63-
config_proc_macro = { path = "config_proc_macro" }
63+
rustfmt-config_proc_macro = { version = "0.1", path = "config_proc_macro" }
6464

6565
# A noop dependency that changes in the Rust repository, it's a bit of a hack.
6666
# See the `src/tools/rustc-workspace-hack/README.md` file in `rust-lang/rust`

config_proc_macro/Cargo.lock

Lines changed: 10 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

config_proc_macro/Cargo.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
[package]
2-
name = "config_proc_macro"
2+
name = "rustfmt-config_proc_macro"
33
version = "0.1.0"
44
authors = ["topecongiro <seuchida@gmail.com>"]
55
edition = "2018"
6+
description = "A collection of procedural macros for rustfmt"
7+
license = "Apache-2.0/MIT"
8+
categories = ["development-tools::procedural-macro-helpers"]
9+
repository = "https://github.com/rust-lang/rustfmt"
610

711
[lib]
812
proc-macro = true

src/config/lists.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//! Configuration options related to rewriting a list.
22
3-
use config_proc_macro::config_type;
3+
use rustfmt_config_proc_macro::config_type;
44

55
use crate::config::IndentStyle;
66

src/config/options.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ use std::fmt;
33
use std::path::{Path, PathBuf};
44

55
use atty;
6-
use config_proc_macro::config_type;
6+
use rustfmt_config_proc_macro::config_type;
77
use serde::de::{SeqAccess, Visitor};
88
use serde::ser::SerializeSeq;
99
use serde::{Deserialize, Deserializer, Serialize, Serializer};

0 commit comments

Comments
 (0)