Skip to content

Commit

Permalink
api: publish v0.3.0
Browse files Browse the repository at this point in the history
Publish nydus-api v0.3.0.

Signed-off-by: Jiang Liu <[email protected]>
  • Loading branch information
jiangliu committed Jun 16, 2023
1 parent cce78d4 commit caa7d05
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ openssl = { version = "0.10.48", features = ["vendored"] }
# pin openssl-src to bring in fix for https://rustsec.org/advisories/RUSTSEC-2022-0032
#openssl-src = { version = "111.22" }

nydus-api = { version = "0.2.2", path = "api", features = ["handler"] }
nydus-api = { version = "0.3.0", path = "api", features = ["handler"] }
nydus-builder = { version = "0.1.0", path = "builder" }
nydus-rafs = { version = "0.3.0", path = "rafs" }
nydus-service = { version = "0.2.0", path = "service", features = ["block-device"] }
Expand Down
2 changes: 1 addition & 1 deletion api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nydus-api"
version = "0.2.2"
version = "0.3.0"
description = "APIs for Nydus Image Service"
authors = ["The Nydus Developers"]
license = "Apache-2.0 OR BSD-3-Clause"
Expand Down
2 changes: 1 addition & 1 deletion builder/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ tar = "0.4.38"
vmm-sys-util = "0.10.0"
xattr = "0.2.3"

nydus-api = { version = "0.2", path = "../api" }
nydus-api = { version = "0.3", path = "../api" }
nydus-rafs = { version = "0.3", path = "../rafs" }
nydus-storage = { version = "0.6", path = "../storage", features = ["backend-localfs"] }
nydus-utils = { version = "0.4", path = "../utils" }
Expand Down
2 changes: 1 addition & 1 deletion clib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ crate-type = ["cdylib", "staticlib"]
libc = "0.2.137"
log = "0.4.17"
fuse-backend-rs = "^0.10.3"
nydus-api = { version = "0.2", path = "../api" }
nydus-api = { version = "0.3", path = "../api" }
nydus-rafs = { version = "0.3.0", path = "../rafs" }
nydus-storage = { version = "0.6.2", path = "../storage" }

Expand Down
2 changes: 1 addition & 1 deletion rafs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ serde_json = "1.0.53"
vm-memory = "0.9"
fuse-backend-rs = "^0.10.3"

nydus-api = { version = "0.2", path = "../api" }
nydus-api = { version = "0.3", path = "../api" }
nydus-storage = { version = "0.6", path = "../storage", features = ["backend-localfs"] }
nydus-utils = { version = "0.4", path = "../utils" }

Expand Down
2 changes: 1 addition & 1 deletion service/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ thiserror = "1.0"
time = { version = "0.3.14", features = ["serde-human-readable"] }
tokio = { version = "1.24", features = ["macros"] }

nydus-api = { version = "0.2.2", path = "../api"}
nydus-api = { version = "0.3.0", path = "../api"}
nydus-rafs = { version = "0.3.0", path = "../rafs" }
nydus-storage = { version = "0.6.2", path = "../storage" }
nydus-utils = { version = "0.4.1", path = "../utils" }
Expand Down
2 changes: 1 addition & 1 deletion storage/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ vm-memory = "0.9"
fuse-backend-rs = "^0.10.3"
gpt = { version = "3.0.0", optional = true }

nydus-api = { version = "0.2", path = "../api" }
nydus-api = { version = "0.3", path = "../api" }
nydus-utils = { version = "0.4", path = "../utils", features = ["encryption", "zran"] }
sha1 = { version = "0.10.5", optional = true }

Expand Down
2 changes: 1 addition & 1 deletion utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ tokio = { version = "1.19.0", features = ["rt", "sync"] }
zstd = "0.11"
nix = "0.24"

nydus-api = { version = "0.2.2", path = "../api" }
nydus-api = { version = "0.3", path = "../api" }

# libz-ng-sys doesn't compile on ppc64. Have to fallback to stock zlib-sys
[target.'cfg(target_arch = "powerpc64")'.dependencies]
Expand Down

0 comments on commit caa7d05

Please sign in to comment.