Skip to content
Draft
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
79 changes: 14 additions & 65 deletions Cargo.lock

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

11 changes: 9 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,20 @@ rustls-pemfile = "2.0.0"
tokio = { version = "1.40", features = ["sync"] }
tracing = { version = "0.1.37", features = ["log", "log-always"] }
url = "2.4.0"
aws-lc-sys = { version = "=0.28.0", features = ["bindgen"] }
aws-lc-rs = "=1.13.0"
aws-lc-sys = { version = "=0.41.0", features = ["bindgen"] }
aws-lc-rs = "=1.17.0"

[build-dependencies]
prost-build = "0.13.5"
pyo3-build-config = "0.24"

# TEMPORARY: build against the unmerged ngrok-rust PR #203 (edition 2024 + dep bumps).
# https://github.com/ngrok/ngrok-rust/pull/203
# Remove this patch (and revert the aws-lc-sys/aws-lc-rs bumps if needed) once
# that lands and a new ngrok release is published, then bump the `ngrok` version.
[patch.crates-io]
ngrok = { git = "https://github.com/ngrok/ngrok-rust", branch = "bmps/bump-the-security-deps" }

[profile.release]
lto = true

Expand Down
18 changes: 9 additions & 9 deletions flake.lock

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

4 changes: 1 addition & 3 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -125,14 +125,12 @@
LIBCLANG_PATH="${pkgs.llvmPackages.libclang.lib}/lib";
buildInputs = with pkgs; [
toolchain
python-toolchain
llvm-toolchain
fix-n-fmt
setup-hooks
cargo-udeps
semver-checks
extract-version
] ++ lib.optionals stdenv.isDarwin [
] ++ python-toolchain ++ llvm-toolchain ++ lib.optionals stdenv.isDarwin [
# nix darwin stdenv has broken libiconv: https://github.com/NixOS/nixpkgs/issues/158331
libiconv
pkgs.darwin.apple_sdk.frameworks.Security
Expand Down
Loading