summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--Cargo.lock8
-rw-r--r--oxish-aws-lc/Cargo.toml4
-rw-r--r--oxish-graviola/Cargo.toml4
-rw-r--r--oxish-proto/Cargo.toml2
-rw-r--r--oxish/Cargo.toml8
5 files changed, 13 insertions, 13 deletions
diff --git a/Cargo.lock b/Cargo.lock
index cecfca4..2c3adb7 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -522,7 +522,7 @@ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
[[package]]
name = "oxish"
-version = "0.1.0-rc.1"
+version = "0.1.0"
dependencies = [
"anyhow",
"bitflags",
@@ -545,7 +545,7 @@ dependencies = [
[[package]]
name = "oxish-aws-lc"
-version = "0.1.0-rc.1"
+version = "0.1.0"
dependencies = [
"aws-lc-rs",
"oxish-proto",
@@ -553,7 +553,7 @@ dependencies = [
[[package]]
name = "oxish-graviola"
-version = "0.1.0-rc.1"
+version = "0.1.0"
dependencies = [
"graviola",
"oxish-proto",
@@ -562,7 +562,7 @@ dependencies = [
[[package]]
name = "oxish-proto"
-version = "0.1.0-rc.1"
+version = "0.1.0"
dependencies = [
"data-encoding",
"sha1",
diff --git a/oxish-aws-lc/Cargo.toml b/oxish-aws-lc/Cargo.toml
index e47154b..c8628db 100644
--- a/oxish-aws-lc/Cargo.toml
+++ b/oxish-aws-lc/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "oxish-aws-lc"
-version = "0.1.0-rc.1"
+version = "0.1.0"
edition.workspace = true
rust-version.workspace = true
license = "Apache-2.0 OR MIT"
@@ -16,7 +16,7 @@ fips = ["aws-lc-rs/fips"]
[dependencies]
aws-lc-rs = { workspace = true }
-proto = { package = "oxish-proto", version = "=0.1.0-rc.1", path = "../oxish-proto" }
+proto = { package = "oxish-proto", version = "0.1", path = "../oxish-proto" }
[lints]
workspace = true
diff --git a/oxish-graviola/Cargo.toml b/oxish-graviola/Cargo.toml
index 97dcf35..445a92c 100644
--- a/oxish-graviola/Cargo.toml
+++ b/oxish-graviola/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "oxish-graviola"
-version = "0.1.0-rc.1"
+version = "0.1.0"
edition.workspace = true
rust-version.workspace = true
license = "Apache-2.0 OR MIT"
@@ -12,7 +12,7 @@ categories = ["network-programming", "cryptography"]
[dependencies]
graviola = { workspace = true }
-proto = { package = "oxish-proto", version = "=0.1.0-rc.1", path = "../oxish-proto" }
+proto = { package = "oxish-proto", version = "0.1", path = "../oxish-proto" }
zeroize = { workspace = true }
[lints]
diff --git a/oxish-proto/Cargo.toml b/oxish-proto/Cargo.toml
index 5621c23..0a19bbf 100644
--- a/oxish-proto/Cargo.toml
+++ b/oxish-proto/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "oxish-proto"
-version = "0.1.0-rc.1"
+version = "0.1.0"
edition.workspace = true
rust-version.workspace = true
license = "Apache-2.0 OR MIT"
diff --git a/oxish/Cargo.toml b/oxish/Cargo.toml
index 5408ba1..6791bde 100644
--- a/oxish/Cargo.toml
+++ b/oxish/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "oxish"
-version = "0.1.0-rc.1"
+version = "0.1.0"
edition.workspace = true
rust-version.workspace = true
license = "Apache-2.0 OR MIT"
@@ -18,14 +18,14 @@ graviola = ["dep:graviola"]
[dependencies]
anyhow = { workspace = true }
-aws-lc = { package = "oxish-aws-lc", version = "=0.1.0-rc.1", path = "../oxish-aws-lc", optional = true }
+aws-lc = { package = "oxish-aws-lc", version = "0.1", path = "../oxish-aws-lc", optional = true }
bitflags = { workspace = true }
clap = { workspace = true }
data-encoding = { workspace = true }
-graviola = { package = "oxish-graviola", version = "=0.1.0-rc.1", path = "../oxish-graviola", optional = true }
+graviola = { package = "oxish-graviola", version = "0.1", path = "../oxish-graviola", optional = true }
libc = { workspace = true }
listenfd = { workspace = true }
-proto = { package = "oxish-proto", version = "=0.1.0-rc.1", path = "../oxish-proto" }
+proto = { package = "oxish-proto", version = "0.1", path = "../oxish-proto" }
thiserror = { workspace = true }
tokio = { workspace = true }
tokio-stream = { workspace = true }