Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ license = "MIT OR Apache-2.0"
rust-version = "1.90.0"

[workspace.dependencies]
cfg_aliases = { version = "0.2", default-features = false }
cfg_aliases = { version = "0.2.2", default-features = false }
Comment thread
mxinden marked this conversation as resolved.
enum-map = { version = "2.7", default-features = false }
enumset = { version = "1.1", default-features = false }
hex = { version = "0.4", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion mtu/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ windows = { workspace = true, features = [
] }

[build-dependencies]
cfg_aliases = { version = "0.2", default-features = false }
cfg_aliases = { workspace = true }

[package.metadata.cargo-machete]
ignored = ["cfg_aliases"]
Expand Down
5 changes: 0 additions & 5 deletions mtu/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,6 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

#[allow(
clippy::allow_attributes,
semicolon_in_expressions_from_macros,
reason = "TODO: Remove once https://github.com/katharostech/cfg_aliases/pull/15 releases."
)]
fn main() {
cfg_aliases::cfg_aliases! {
bsd: {
Expand Down
5 changes: 0 additions & 5 deletions neqo-bin/build.rs
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
use cfg_aliases::cfg_aliases;

#[allow(
clippy::allow_attributes,
semicolon_in_expressions_from_macros,
reason = "TODO: Remove once https://github.com/katharostech/cfg_aliases/pull/15 releases."
)]
fn main() {
// Setup cfg aliases
cfg_aliases! {
Expand Down
5 changes: 0 additions & 5 deletions neqo-udp/build.rs
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
use cfg_aliases::cfg_aliases;

#[allow(
clippy::allow_attributes,
semicolon_in_expressions_from_macros,
reason = "TODO: Remove once https://github.com/katharostech/cfg_aliases/pull/15 releases."
)]
fn main() {
// Setup cfg aliases
cfg_aliases! {
Expand Down
Loading