Skip to content
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

Add limits to reading XML inputs #319

Merged
merged 12 commits into from
Jan 20, 2025
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
rust: [1.70.0, stable, beta, nightly]
rust: [1.73.0, stable, beta, nightly]
steps:
- name: Checkout repository
uses: actions/checkout@v1
Expand Down
10 changes: 8 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "rpki"
version = "0.18.4"
edition = "2021"
rust-version = "1.70"
rust-version = "1.73"
authors = ["NLnet Labs <rpki-team@nlnetlabs.nl>"]
description = "A library for validating and creating RPKI data."
documentation = "https://docs.rs/rpki/"
Expand Down Expand Up @@ -36,7 +36,13 @@ untrusted = { version = "0.9", optional = true }
[dev-dependencies]
serde_json = "1.0.40"
serde_test = "1.0"
tokio = { version="1.0", features=["net", "macros"]}
tokio = { version="1.0", features=["net", "macros", "rt-multi-thread"]}
hyper = { version = "1.3.1", features = ["server", "http1"] }
hyper-util = { version = "0.1", features = ["server", "tokio"] }
http-body-util = "0.1"
futures-util = "0.3.31"
reqwest = { version = "0.12.9", features = ["gzip", "stream", "blocking"] }


[features]
default = []
Expand Down
Loading
Loading