Skip to content

Commit

Permalink
blobfs: prepare for publishing v0.1
Browse files Browse the repository at this point in the history
Prepare for publishing nydus-blobfs v0.1

Signed-off-by: Jiang Liu <gerry@linux.alibaba.com>
  • Loading branch information
jiangliu committed Jun 16, 2022
1 parent 6daae2e commit 56cb2a0
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 28 deletions.
36 changes: 18 additions & 18 deletions 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 @@ -60,7 +60,7 @@ nydus-error = { path = "error" }
nydus-rafs = { version = "0.1.0", path = "rafs", features = ["backend-registry", "backend-oss"] }
nydus-storage = { version = "0.5.0", path = "storage" }
nydus-utils = { version = "0.3.0", path = "utils" }
blobfs = { path = "blobfs", features = ["virtiofs"], optional = true }
nydus-blobfs = { path = "blobfs", features = ["virtiofs"], optional = true }

[dev-dependencies]
sendfd = "0.3.3"
Expand Down
24 changes: 15 additions & 9 deletions blobfs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,29 +1,35 @@
[package]
name = "blobfs"
name = "nydus-blobfs"
version = "0.1.0"
description = "Blob object file system for Nydus Image Service"
authors = ["The Nydus Developers"]
edition = "2018"
license = "Apache-2.0 OR BSD-3-Clause"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
homepage = "https://nydus.dev/"
repository = "https://github.com/dragonflyoss/image-service"
edition = "2018"

[dependencies]
fuse-backend-rs = { version = "0.9.0" }
libc = "0.2"
log = "0.4.8"
serde = { version = "1.0.110", features = ["serde_derive", "rc"] }
serde_json = "1.0.53"
serde_with = { version = "1.6.0", features = ["macros"] }
libc = "0.2"
vm-memory = { version = "0.7.0" }
fuse-backend-rs = { version = "0.9.0" }

nydus-error = { path = "../error" }
nydus-error = { version = "0.2.0", path = "../error" }
nydus-rafs = { version = "0.1.0", path = "../rafs" }
nydus-storage = { version = "0.5.0", path = "../storage", features = ["backend-localfs"] }

[dev-dependencies]
nydus-app = { version = "0.2", path = "../app" }

[features]
default = ["virtiofs"]
virtiofs = [ "fuse-backend-rs/virtiofs", "nydus-rafs/virtio-fs" ]
backend-oss = ["nydus-rafs/backend-oss"]
backend-registry = ["nydus-rafs/backend-registry"]

[dev-dependencies]
nydus-app = { version = "0.2", path = "../app" }
[package.metadata.docs.rs]
all-features = true
targets = ["x86_64-unknown-linux-gnu", "x86_64-apple-darwin"]

0 comments on commit 56cb2a0

Please sign in to comment.