feat: remove openssl transitive dependency
This commit is contained in:
parent
3f87d011e7
commit
db523065e0
4 changed files with 2 additions and 20 deletions
|
@ -4,6 +4,5 @@ version = "0.1.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
kxio = "5.0"
|
kxio = "5.1"
|
||||||
native-tls = { version = "0.2", features = ["vendored"] }
|
|
||||||
tokio = { version = "1.43", features = ["full"] }
|
tokio = { version = "1.43", features = ["full"] }
|
||||||
|
|
2
justfile
2
justfile
|
@ -1,4 +1,4 @@
|
||||||
image := "git.kemitix.get/kemitix/rust:test"
|
image := "git.kemitix.net/kemitix/rust:test"
|
||||||
|
|
||||||
build:
|
build:
|
||||||
docker build . -t {{ image }}
|
docker build . -t {{ image }}
|
||||||
|
|
|
@ -1,10 +1,8 @@
|
||||||
//
|
//
|
||||||
mod kxio;
|
mod kxio;
|
||||||
mod tls;
|
|
||||||
|
|
||||||
fn main() -> Result<(), Box<dyn std::error::Error>> {
|
fn main() -> Result<(), Box<dyn std::error::Error>> {
|
||||||
println!("Hello, world!");
|
println!("Hello, world!");
|
||||||
tls::main();
|
|
||||||
|
|
||||||
let rt = tokio::runtime::Runtime::new()?;
|
let rt = tokio::runtime::Runtime::new()?;
|
||||||
Ok(rt.block_on(crate::kxio::main())?)
|
Ok(rt.block_on(crate::kxio::main())?)
|
||||||
|
|
15
src/tls.rs
15
src/tls.rs
|
@ -1,15 +0,0 @@
|
||||||
use native_tls::TlsConnector;
|
|
||||||
use std::io::{Read, Write};
|
|
||||||
use std::net::TcpStream;
|
|
||||||
|
|
||||||
pub fn main() {
|
|
||||||
let connector = TlsConnector::new().unwrap();
|
|
||||||
|
|
||||||
let stream = TcpStream::connect("google.com:443").unwrap();
|
|
||||||
let mut stream = connector.connect("google.com", stream).unwrap();
|
|
||||||
|
|
||||||
stream.write_all(b"GET / HTTP/1.0\r\n\r\n").unwrap();
|
|
||||||
let mut res = vec![];
|
|
||||||
stream.read_to_end(&mut res).unwrap();
|
|
||||||
println!("{}", String::from_utf8_lossy(&res));
|
|
||||||
}
|
|
Loading…
Add table
Reference in a new issue