Skip to content

Commit 82ed602

Browse files
authored
Only require Rust 1.63. (#257)
This PR switches to routecore release 0.3.1 so we only require Rust 1.63.
1 parent 0655916 commit 82ed602

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
strategy:
88
matrix:
99
os: [ubuntu-latest, windows-latest, macOS-latest]
10-
rust: [1.65.0, stable, beta, nightly]
10+
rust: [1.63.0, stable, beta, nightly]
1111
steps:
1212
- name: Checkout repository
1313
uses: actions/checkout@v1

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "rpki"
33
version = "0.16.1-dev"
44
edition = "2018"
5-
rust-version = "1.65"
5+
rust-version = "1.63"
66
authors = ["The NLnet Labs RPKI Team <[email protected]>"]
77
description = "A library for validating and creating RPKI data."
88
documentation = "https://docs.rs/rpki/"
@@ -27,7 +27,7 @@ log = "0.4.7"
2727
openssl = { version = "0.10.23", optional = true }
2828
quick-xml = { version = "0.23.0", optional = true }
2929
ring = { version = "0.16.11", optional = true }
30-
routecore = { git = "https://github.com/NLnetLabs/routecore.git" }
30+
routecore = "0.3.1"
3131
serde = { version = "1.0.103", optional = true, features = [ "derive" ] }
3232
serde_json = { version = "1.0.40", optional = true }
3333
tokio = { version = "1.0", optional = true, features = ["io-util", "net", "rt", "sync", "time"] }

0 commit comments

Comments
 (0)