Skip to content

Commit 27d0c49

Browse files
committed
edition 2024
1 parent 08a3a15 commit 27d0c49

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed

Cargo.toml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,16 @@
11
[package]
22
name = "async-openssl"
33
version = "0.0.0"
4+
edition = "2024"
45
authors = ["Alex Crichton <[email protected]>", "Marc-Antoine Perennou <[email protected]>"]
5-
license = "MIT/Apache-2.0"
6-
edition = "2018"
6+
description = "An implementation of SSL streams for async IO backed by OpenSSL"
77
repository = "https://github.com/amqp-rs/async-openssl"
8-
description = """
9-
An implementation of SSL streams for async IO backed by OpenSSL
10-
"""
8+
readme = "README.md"
9+
documentation = "https://docs.rs/async-openssl"
10+
keywords = ["crypto", "tls", "ssl", "dtls"]
11+
categories = ["asynchronous", "cryptography", "network-programming"]
12+
license = "MIT/Apache-2.0"
13+
rust-version = "1.85.0"
1114

1215
[dependencies]
1316
futures-io = "^0.3"

src/test.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ use futures_io::AsyncWrite;
33
use futures_util::future;
44
use openssl::ssl::{Ssl, SslAcceptor, SslConnector, SslFiletype, SslMethod};
55
use smol::{
6-
io::{AsyncReadExt, AsyncWriteExt},
76
Async,
7+
io::{AsyncReadExt, AsyncWriteExt},
88
};
99
use std::{
1010
io,

0 commit comments

Comments
 (0)