Skip to content

Commit

Permalink
Implement ASPA support (#132)
Browse files Browse the repository at this point in the history
This PR adds support for ASPA in the JSON format for both input and output.
  • Loading branch information
devsnek authored Feb 3, 2025
1 parent b79ebe7 commit c5756ff
Show file tree
Hide file tree
Showing 4 changed files with 235 additions and 65 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
rust: [1.71.1, stable, beta]
rust: [1.74.1, stable, beta]
steps:
- name: Checkout repository
uses: actions/checkout@v1
Expand Down
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.

5 changes: 2 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "rtrtr"
version = "0.3.2-dev"
edition = "2021"
rust-version = "1.71.1"
rust-version = "1.74.1"
authors = ["NLnet Labs <[email protected]>"]
description = "A versatile tool for managing route filters"
repository = "https://github.com/NLnetLabs/rtrtr"
Expand All @@ -26,7 +26,7 @@ log = "0.4"
pin-project-lite = "0.2.4"
rand = "0.8.3"
reqwest = { version = "0.12.5", default-features = false, features = ["blocking", "rustls-tls"] }
rpki = { version = "0.18.2", features = ["crypto", "rtr", "slurm"] }
rpki = { version = "0.18.5", features = ["crypto", "rtr", "slurm"] }
rustls-pemfile = "2.1.2"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
Expand All @@ -45,7 +45,6 @@ default = [ "socks" ]
arbitrary = [ "dep:arbitrary", "chrono/arbitrary", "rpki/arbitrary" ]
socks = [ "reqwest/socks" ]


[dev-dependencies]
stderrlog = "0.6"
rand_pcg = "0.3"
Expand Down
Loading

0 comments on commit c5756ff

Please sign in to comment.