-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Summary: See the next diff. Splitting this out so that I can mark it as a codemod Reviewed By: shonaganuma Differential Revision: D50440122 fbshipit-source-id: ca19eaac6af77f249ec1bb24d5f522b4a94509d9
- Loading branch information
1 parent
e2dce91
commit 43689e0
Showing
16 changed files
with
130 additions
and
130 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
[package] | ||
name = "allocative_derive" | ||
version = "0.3.1" | ||
edition = "2021" | ||
authors = ["Meta"] | ||
description = "Implementation of derive(Allocative) for allocative crate" | ||
documentation = "https://docs.rs/allocative" | ||
edition = "2021" | ||
license = "MIT OR Apache-2.0" | ||
authors = ["Meta"] | ||
name = "allocative_derive" | ||
repository = "https://github.com/facebookexperimental/allocative" | ||
documentation = "https://docs.rs/allocative" | ||
version = "0.3.1" | ||
|
||
[lib] | ||
proc-macro = true | ||
|
||
[dependencies] | ||
quote = { workspace = true } | ||
proc-macro2 = { workspace = true } | ||
quote = { workspace = true } | ||
syn = { workspace = true } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
[package] | ||
name = "cmp_any" | ||
version = "0.8.1" | ||
license = "MIT OR Apache-2.0" | ||
authors = ["Facebook"] | ||
edition = "2021" | ||
repository = "https://github.com/facebookincubator/gazebo" | ||
documentation = "https://docs.rs/cmp_any" | ||
categories = ["rust-patterns"] | ||
description = "Comparison for &dyn types" | ||
documentation = "https://docs.rs/cmp_any" | ||
edition = "2021" | ||
license = "MIT OR Apache-2.0" | ||
name = "cmp_any" | ||
repository = "https://github.com/facebookincubator/gazebo" | ||
version = "0.8.1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
[package] | ||
name = "dupe" | ||
version = "0.9.0" | ||
license = "MIT OR Apache-2.0" | ||
authors = ["Facebook"] | ||
edition = "2021" | ||
categories = ["rust-patterns"] | ||
description = "Marker for types which are cheap to clone" | ||
repository = "https://github.com/facebookincubator/gazebo" | ||
documentation = "https://docs.rs/dupe" | ||
categories = ["rust-patterns"] | ||
edition = "2021" | ||
license = "MIT OR Apache-2.0" | ||
name = "dupe" | ||
repository = "https://github.com/facebookincubator/gazebo" | ||
version = "0.9.0" | ||
|
||
[dependencies] | ||
dupe_derive = { version = "=0.9.0", path = "../dupe_derive" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
[package] | ||
name = "dupe_derive" | ||
version = "0.9.0" | ||
license = "MIT OR Apache-2.0" | ||
authors = ["Facebook"] | ||
edition = "2021" | ||
categories = ["rust-patterns"] | ||
description = "Derive Dupe" | ||
repository = "https://github.com/facebookincubator/gazebo" | ||
documentation = "https://docs.rs/dupe" | ||
categories = ["rust-patterns"] | ||
edition = "2021" | ||
license = "MIT OR Apache-2.0" | ||
name = "dupe_derive" | ||
repository = "https://github.com/facebookincubator/gazebo" | ||
version = "0.9.0" | ||
|
||
[lib] | ||
proc-macro = true | ||
|
||
[dependencies] | ||
proc-macro2 = "1.0" | ||
syn = { version = "2", features = ["extra-traits"] } | ||
quote = "1.0.3" | ||
syn = { version = "2", features = ["extra-traits"] } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
[package] | ||
name = "gazebo" | ||
version = "0.8.1" | ||
license = "MIT OR Apache-2.0" | ||
authors = ["Facebook"] | ||
edition = "2021" | ||
categories = ["rust-patterns"] | ||
description = "A collection of well-tested utilities" | ||
repository = "https://github.com/facebookincubator/gazebo" | ||
documentation = "https://docs.rs/gazebo" | ||
categories = ["rust-patterns"] | ||
edition = "2021" | ||
license = "MIT OR Apache-2.0" | ||
name = "gazebo" | ||
repository = "https://github.com/facebookincubator/gazebo" | ||
version = "0.8.1" | ||
|
||
[features] | ||
str_pattern_extensions = [] | ||
|
||
[dependencies] | ||
gazebo_derive = { version = "0.8.0", path = "../gazebo_derive" } | ||
dupe = { version = "0.9.0", path = "../dupe" } | ||
gazebo_derive = { version = "0.8.0", path = "../gazebo_derive" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
[package] | ||
name = "gazebo_derive" | ||
version = "0.8.0" | ||
license = "MIT OR Apache-2.0" | ||
authors = ["Facebook"] | ||
edition = "2021" | ||
categories = ["rust-patterns"] | ||
description = "Derive macros for the Gazebo library" | ||
repository = "https://github.com/facebookincubator/gazebo" | ||
documentation = "https://docs.rs/gazebo_derive" | ||
categories = ["rust-patterns"] | ||
edition = "2021" | ||
license = "MIT OR Apache-2.0" | ||
name = "gazebo_derive" | ||
repository = "https://github.com/facebookincubator/gazebo" | ||
version = "0.8.0" | ||
|
||
[lib] | ||
proc-macro = true | ||
|
||
[dependencies] | ||
proc-macro2 = "1.0" | ||
syn = { version = "2", features = ["extra-traits"] } | ||
quote = "1.0.3" | ||
syn = { version = "2", features = ["extra-traits"] } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
[package] | ||
name = "starlark_derive" | ||
version = "0.10.0" | ||
edition = "2021" | ||
license = "Apache-2.0" | ||
authors = ["Facebook"] | ||
description = "Derive helpers for the starlark package." | ||
documentation = "https://docs.rs/starlark_derive" | ||
edition = "2021" | ||
license = "Apache-2.0" | ||
name = "starlark_derive" | ||
repository = "https://github.com/facebookexperimental/starlark-rust" | ||
authors = ["Facebook"] | ||
version = "0.10.0" | ||
|
||
[lib] | ||
proc-macro = true | ||
|
||
[dependencies] | ||
proc-macro2 = "1.0" | ||
syn = { version = "2", features = ["full", "extra-traits", "visit", "visit-mut"] } | ||
dupe = { workspace = true } | ||
proc-macro2 = "1.0" | ||
quote = "1.0" | ||
syn = { version = "2", features = ["extra-traits", "full", "visit", "visit-mut"] } |
Oops, something went wrong.