rename rboring to boring2
This commit is contained in:
parent
837ec6227b
commit
5ddb1ee185
|
|
@ -20,7 +20,7 @@ publish = false
|
|||
|
||||
[workspace.dependencies]
|
||||
boring-sys = { package = "boring-sys2", version = "4.11.0", path = "./boring-sys" }
|
||||
boring = { package = "rboring", version = "4.11.0", path = "./boring" }
|
||||
boring = { package = "boring2", version = "4.11.0", path = "./boring" }
|
||||
tokio-boring = { package = "tokio-boring2", version = "4.11.0", path = "./tokio-boring" }
|
||||
|
||||
bindgen = { version = "0.70.1", default-features = false, features = ["runtime"] }
|
||||
|
|
|
|||
|
|
@ -1,11 +1,11 @@
|
|||
[package]
|
||||
name = "rboring"
|
||||
name = "boring2"
|
||||
version = { workspace = true }
|
||||
authors = ["Steven Fackler <sfackler@gmail.com>", "Ivan Nikulin <ifaaan@gmail.com>"]
|
||||
license = "Apache-2.0"
|
||||
description = "BoringSSL bindings"
|
||||
repository = { workspace = true }
|
||||
documentation = "https://docs.rs/rboring"
|
||||
documentation = "https://docs.rs/boring2"
|
||||
readme = "README.md"
|
||||
keywords = ["crypto", "tls", "ssl", "dtls"]
|
||||
categories = ["cryptography", "api-bindings"]
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
use rboring as boring;
|
||||
use boring2 as boring;
|
||||
|
||||
fn main() {
|
||||
println!("boring::fips::enabled(): {}", boring::fips::enabled());
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
//! A program that generates ca certs, certs verified by the ca, and public
|
||||
//! and private keys.
|
||||
|
||||
extern crate rboring as boring;
|
||||
extern crate boring2 as boring;
|
||||
|
||||
use boring::asn1::Asn1Time;
|
||||
use boring::bn::{BigNum, MsbOption};
|
||||
|
|
|
|||
Loading…
Reference in New Issue