diff options
| -rw-r--r-- | Cargo.lock | 8 | ||||
| -rw-r--r-- | oxish-aws-lc/Cargo.toml | 4 | ||||
| -rw-r--r-- | oxish-graviola/Cargo.toml | 4 | ||||
| -rw-r--r-- | oxish-proto/Cargo.toml | 2 | ||||
| -rw-r--r-- | oxish/Cargo.toml | 8 |
5 files changed, 13 insertions, 13 deletions
@@ -522,7 +522,7 @@ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe" [[package]] name = "oxish" -version = "0.1.0" +version = "0.1.0-rc.1" dependencies = [ "anyhow", "bitflags", @@ -545,7 +545,7 @@ dependencies = [ [[package]] name = "oxish-aws-lc" -version = "0.1.0" +version = "0.1.0-rc.1" dependencies = [ "aws-lc-rs", "oxish-proto", @@ -553,7 +553,7 @@ dependencies = [ [[package]] name = "oxish-graviola" -version = "0.1.0" +version = "0.1.0-rc.1" dependencies = [ "graviola", "oxish-proto", @@ -562,7 +562,7 @@ dependencies = [ [[package]] name = "oxish-proto" -version = "0.1.0" +version = "0.1.0-rc.1" dependencies = [ "data-encoding", "sha1", diff --git a/oxish-aws-lc/Cargo.toml b/oxish-aws-lc/Cargo.toml index 15f2b34..4b8d228 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" +version = "0.1.0-rc.1" edition.workspace = true rust-version.workspace = true license = "Apache-2.0 OR MIT" @@ -11,7 +11,7 @@ fips = ["aws-lc-rs/fips"] [dependencies] aws-lc-rs = { workspace = true } -proto = { package = "oxish-proto", version = "0.1", path = "../oxish-proto" } +proto = { package = "oxish-proto", version = "=0.1.0-rc.1", path = "../oxish-proto" } [lints] workspace = true diff --git a/oxish-graviola/Cargo.toml b/oxish-graviola/Cargo.toml index 0b762e9..2fdee0c 100644 --- a/oxish-graviola/Cargo.toml +++ b/oxish-graviola/Cargo.toml @@ -1,13 +1,13 @@ [package] name = "oxish-graviola" -version = "0.1.0" +version = "0.1.0-rc.1" edition.workspace = true rust-version.workspace = true license = "Apache-2.0 OR MIT" [dependencies] graviola = { workspace = true } -proto = { package = "oxish-proto", version = "0.1", path = "../oxish-proto" } +proto = { package = "oxish-proto", version = "=0.1.0-rc.1", path = "../oxish-proto" } zeroize = { workspace = true } [lints] diff --git a/oxish-proto/Cargo.toml b/oxish-proto/Cargo.toml index 000939b..227309c 100644 --- a/oxish-proto/Cargo.toml +++ b/oxish-proto/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxish-proto" -version = "0.1.0" +version = "0.1.0-rc.1" edition.workspace = true rust-version.workspace = true license = "Apache-2.0 OR MIT" diff --git a/oxish/Cargo.toml b/oxish/Cargo.toml index 09a6ff5..5129803 100644 --- a/oxish/Cargo.toml +++ b/oxish/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxish" -version = "0.1.0" +version = "0.1.0-rc.1" edition.workspace = true rust-version.workspace = true license = "Apache-2.0 OR MIT" @@ -13,14 +13,14 @@ graviola = ["dep:graviola"] [dependencies] anyhow = { workspace = true } -aws-lc = { package = "oxish-aws-lc", version = "0.1.0", path = "../oxish-aws-lc", optional = true } +aws-lc = { package = "oxish-aws-lc", version = "=0.1.0-rc.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", path = "../oxish-graviola", optional = true } +graviola = { package = "oxish-graviola", version = "=0.1.0-rc.1", path = "../oxish-graviola", optional = true } libc = { workspace = true } listenfd = { workspace = true } -proto = { package = "oxish-proto", version = "0.1", path = "../oxish-proto" } +proto = { package = "oxish-proto", version = "=0.1.0-rc.1", path = "../oxish-proto" } thiserror = { workspace = true } tokio = { workspace = true } tokio-stream = { workspace = true } |
