-
Notifications
You must be signed in to change notification settings - Fork 415
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fixed wg set config error on non-linux devices and upgraded all deps #345
Open
sabify
wants to merge
7
commits into
cloudflare:master
Choose a base branch
from
sabify:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
27c0da2
fixing deps inconsistencies and clippy errors
sabify 3147d07
upgrading all deps
sabify b12a81e
deps upgrading
sabify 66dbecd
added accidentally removed comment
sabify 96b9bac
fixed set config error
sabify 6918bae
reverted jni dep major upgrade and fixed fwmark
sabify 979a9cb
fixed ArgMatches derefs
sabify File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -2,20 +2,24 @@ | |
name = "boringtun-cli" | ||
description = "an implementation of the WireGuard® protocol designed for portability and speed" | ||
version = "0.5.2" | ||
authors = ["Noah Kennedy <[email protected]>", "Andy Grover <[email protected]>", "Jeff Hiner <[email protected]>"] | ||
authors = [ | ||
"Noah Kennedy <[email protected]>", | ||
"Andy Grover <[email protected]>", | ||
"Jeff Hiner <[email protected]>", | ||
] | ||
license = "BSD-3-Clause" | ||
repository = "https://github.com/cloudflare/boringtun" | ||
documentation = "https://docs.rs/boringtun/0.5.2/boringtun/" | ||
edition = "2021" | ||
|
||
[dependencies] | ||
daemonize = "0.4.1" | ||
clap = { version = "3.1.6", features = ["env"] } | ||
tracing = "0.1.31" | ||
tracing-subscriber = "0.3.9" | ||
tracing-appender = "0.2.1" | ||
daemonize = "0.5.0" | ||
clap = { version = "4.2.7", features = ["env"] } | ||
tracing = "0.1.37" | ||
tracing-subscriber = "0.3.17" | ||
tracing-appender = "0.2.2" | ||
|
||
[dependencies.boringtun] | ||
version = "0.5.2" | ||
path = "../boringtun" | ||
features = ["device"] | ||
features = ["device"] |
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 |
---|---|---|
|
@@ -3,9 +3,9 @@ name = "boringtun" | |
description = "an implementation of the WireGuard® protocol designed for portability and speed" | ||
version = "0.5.2" | ||
authors = [ | ||
"Noah Kennedy <[email protected]>", | ||
"Andy Grover <[email protected]>", | ||
"Jeff Hiner <[email protected]>", | ||
"Noah Kennedy <[email protected]>", | ||
"Andy Grover <[email protected]>", | ||
"Jeff Hiner <[email protected]>", | ||
] | ||
license = "BSD-3-Clause" | ||
repository = "https://github.com/cloudflare/boringtun" | ||
|
@@ -21,40 +21,40 @@ ffi-bindings = ["tracing-subscriber"] | |
mock-instant = ["mock_instant"] | ||
|
||
[dependencies] | ||
base64 = "0.13" | ||
base64 = "0.21" | ||
hex = "0.4" | ||
untrusted = "0.9.0" | ||
libc = "0.2" | ||
parking_lot = "0.12" | ||
tracing = "0.1.29" | ||
tracing = "0.1.37" | ||
tracing-subscriber = { version = "0.3", features = ["fmt"], optional = true } | ||
ip_network = "0.4.1" | ||
ip_network_table = "0.2.0" | ||
ring = "0.16" | ||
x25519-dalek = { version = "=2.0.0-rc.2", features = [ | ||
"reusable_secrets", | ||
"static_secrets", | ||
x25519-dalek = { version = "2.0.0-rc.2", features = [ | ||
"reusable_secrets", | ||
"static_secrets", | ||
] } | ||
rand_core = { version = "0.6.3", features = ["getrandom"] } | ||
chacha20poly1305 = "0.10.0-pre.1" | ||
aead = "0.5.0-pre.2" | ||
rand_core = { version = "0.6.4", features = ["getrandom"] } | ||
chacha20poly1305 = "0.10.1" | ||
aead = "0.5.2" | ||
blake2 = "0.10" | ||
hmac = "0.12" | ||
jni = { version = "0.19.0", optional = true } | ||
mock_instant = { version = "0.2", optional = true } | ||
socket2 = { version = "0.4.7", features = ["all"], optional = true } | ||
mock_instant = { version = "0.3", optional = true } | ||
socket2 = { version = "0.5.3", features = ["all"], optional = true } | ||
thiserror = { version = "1", optional = true } | ||
|
||
[target.'cfg(unix)'.dependencies] | ||
nix = { version = "0.25", default-features = false, features = [ | ||
"time", | ||
"user", | ||
nix = { version = "0.26", default-features = false, features = [ | ||
"time", | ||
"user", | ||
] } | ||
|
||
[dev-dependencies] | ||
etherparse = "0.12" | ||
etherparse = "0.13" | ||
tracing-subscriber = "0.3" | ||
criterion = { version = "0.3.5", features = ["html_reports"] } | ||
criterion = { version = "0.4.0", features = ["html_reports"] } | ||
|
||
[lib] | ||
crate-type = ["staticlib", "cdylib", "rlib"] | ||
|
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
=
is probably intentional to avoid bugs like this one: webrtc-rs/webrtc#432There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That was part of
cargo upgrade
process and it wasn't intentional, but this repository providesCargo.lock
and builds can be predictable bycargo build --frozen/--locked
. Please let me know if that enforcement should be added.