Skip to content

Commit

Permalink
Sort package entries in Cargo.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Aug 1, 2022
1 parent fadc8e9 commit d9da9c9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,10 @@
name = "syn"
version = "1.0.98" # don't forget to update html_root_url and syn.json
authors = ["David Tolnay <[email protected]>"]
license = "MIT OR Apache-2.0"
categories = ["development-tools::procedural-macro-helpers"]
description = "Parser for Rust source code"
repository = "https://github.com/dtolnay/syn"
documentation = "https://docs.rs/syn"
categories = ["development-tools::procedural-macro-helpers"]
readme = "README.md"
edition = "2018"
include = [
"/benches/**",
"/build.rs",
Expand All @@ -18,7 +16,9 @@ include = [
"/src/**",
"/tests/**",
]
edition = "2018"
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/dtolnay/syn"
rust-version = "1.31"

[features]
Expand Down
6 changes: 3 additions & 3 deletions json/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
name = "syn-codegen"
version = "0.3.0" # also update html_root_url
authors = ["David Tolnay <[email protected]>"]
categories = ["development-tools::procedural-macro-helpers"]
description = "Syntax tree describing Syn's syntax tree"
documentation = "https://docs.rs/syn-codegen"
edition = "2018"
license = "MIT OR Apache-2.0"
description = "Syntax tree describing Syn's syntax tree"
repository = "https://github.com/dtolnay/syn"
documentation = "https://docs.rs/syn-codegen"
categories = ["development-tools::procedural-macro-helpers"]

[dependencies]
indexmap = { version = "1.0", features = ["serde-1"] }
Expand Down

0 comments on commit d9da9c9

Please sign in to comment.