Skip to content

Commit

Permalink
Sort dependencies in Cargo.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay authored and Mark-Simulacrum committed Dec 17, 2023
1 parent 8ab8d14 commit 6dcae1a
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
24 changes: 12 additions & 12 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,27 +5,27 @@ authors = ["Alex Crichton <[email protected]>", "Pietro Albini <pietro@pietr
edition = '2018'

[dependencies]
toml = "0.5.1"
base64 = "0.13.0"
dialoguer = "0.10.1"
env_logger = { version = "0.9.0", default-features = false }
failure = "0.1"
indexmap = "1.0.2"
log = "0.4"
rayon = "1.5"
regex = "1.5.5"
reqwest = { version = "0.11.11", features = ["json", "blocking"] }
rust_team_data = { path = "rust_team_data", features = ["email-encryption"] }
serde = "1"
serde_derive = "1"
serde_json = "1"
log = "0.4"
env_logger = { version = "0.9.0", default-features = false }
structopt = "0.3.26"
regex = "1.5.5"
rust_team_data = { path = "rust_team_data", features = ["email-encryption"] }
indexmap = "1.0.2"
reqwest = { version = "0.11.11", features = ["json", "blocking"] }
base64 = "0.13.0"
dialoguer = "0.10.1"
rayon = "1.5"
toml = "0.5.1"

[dev-dependencies]
duct = "0.13.4"
atty = "0.2.14"
ansi_term = "0.12.1"
atty = "0.2.14"
difference = "2.0.0"
duct = "0.13.4"
walkdir = "2.3.1"

[workspace]
Expand Down
4 changes: 2 additions & 2 deletions rust_team_data/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ authors = ["Pietro Albini <[email protected]>"]
edition = "2018"

[dependencies]
serde = { version = "1.0.85", features = ["derive"] }
indexmap = { version = "1.0.2", features = ["serde-1"] }
chacha20poly1305 = { version = "0.9.0", optional = true }
getrandom = { version = "0.2.1", optional = true }
hex = { version = "0.4.2", optional = true }
indexmap = { version = "1.0.2", features = ["serde-1"] }
serde = { version = "1.0.85", features = ["derive"] }

[features]
email-encryption = ["chacha20poly1305", "getrandom", "hex"]

0 comments on commit 6dcae1a

Please sign in to comment.