Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions Cargo.lock

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

8 changes: 8 additions & 0 deletions crates/cargo_nfs3_server/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.0.1](https://github.com/Vaiz/nfs3/compare/cargo-nfs3-server-v0.1.0-alpha.2...cargo-nfs3-server-v0.0.1) - 2025-06-29

### Changes

- re-export nfs3_types from nfs3_server and nfs3_client crates ([#94](https://github.com/Vaiz/nfs3/pull/94))
- fix new clippy issues from recent Rust update ([#97](https://github.com/Vaiz/nfs3/pull/97))
- drop xdr-codec dependency ([#98](https://github.com/Vaiz/nfs3/pull/98))

## [0.1.0-alpha.2](https://github.com/Vaiz/nfs3/compare/cargo-nfs3-server-v0.1.0-alpha.1...cargo-nfs3-server-v0.1.0-alpha.2) - 2025-06-15

### Changes
Expand Down
4 changes: 2 additions & 2 deletions crates/cargo_nfs3_server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cargo-nfs3-server"
version = "0.1.0-alpha.2"
version = "0.0.1"
authors.workspace = true
edition.workspace = true
rust-version.workspace = true
Expand All @@ -12,7 +12,7 @@ description = "Simple and easy-to-deploy NFSv3 server"
readme = "README.md"

[dependencies]
nfs3_server = { path = "../nfs3_server", version = "0.6.0", features = ["memfs"] }
nfs3_server = { path = "../nfs3_server", version = "0.7.0", features = ["memfs"] }

clap = { workspace = true, default-features = true, features = ["derive"] }
ctrlc = { workspace = true }
Expand Down
3 changes: 2 additions & 1 deletion crates/cargo_nfs3_server/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,11 @@
## Usage

### Installation

To use `cargo-nfs3-server`, ensure you have Rust installed. Then run cargo install

```bash
cargo install cargo-nfs3-server@0.1.0-alpha.2
cargo install cargo-nfs3-server
```

### Running the Server
Expand Down
9 changes: 9 additions & 0 deletions crates/nfs3_client/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.5.0](https://github.com/Vaiz/nfs3/compare/nfs3_client-v0.4.2...nfs3_client-v0.5.0) - 2025-06-29

### Changes

- [**breaking**] pass arguments by reference ([#99](https://github.com/Vaiz/nfs3/pull/99))
- [**breaking**] drop xdr-codec dependency ([#98](https://github.com/Vaiz/nfs3/pull/98))
- re-export nfs3_types from nfs3_server and nfs3_client crates ([#94](https://github.com/Vaiz/nfs3/pull/94))
- fix new clippy issues from recent Rust update ([#97](https://github.com/Vaiz/nfs3/pull/97))

## [0.4.2](https://github.com/Vaiz/nfs3/compare/nfs3_client-v0.4.1...nfs3_client-v0.4.2) - 2025-06-15

### Changes
Expand Down
4 changes: 2 additions & 2 deletions crates/nfs3_client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nfs3_client"
version = "0.4.2"
version = "0.5.0"
authors.workspace = true
edition.workspace = true
rust-version.workspace = true
Expand All @@ -15,7 +15,7 @@ readme = "README.md"
tokio = ["dep:tokio"]

[dependencies]
nfs3_types = { path = "../nfs3_types", version = "0.3.4" }
nfs3_types = { path = "../nfs3_types", version = "0.4.0" }

rand.workspace = true
tokio = { workspace = true, optional = true, default-features = false, features = ["net", "io-util"] }
Expand Down
6 changes: 6 additions & 0 deletions crates/nfs3_macros/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.4.0](https://github.com/Vaiz/nfs3/compare/nfs3_macros-v0.3.4...nfs3_macros-v0.4.0) - 2025-06-29

### Changes

- [**breaking**] drop xdr-codec dependency ([#98](https://github.com/Vaiz/nfs3/pull/98))

## [0.3.4](https://github.com/Vaiz/nfs3/compare/nfs3_macros-v0.3.3...nfs3_macros-v0.3.4) - 2025-06-15

### Changes
Expand Down
2 changes: 1 addition & 1 deletion crates/nfs3_macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nfs3_macros"
version = "0.3.4"
version = "0.4.0"
edition.workspace = true
rust-version.workspace = true
authors.workspace = true
Expand Down
9 changes: 9 additions & 0 deletions crates/nfs3_server/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.7.0](https://github.com/Vaiz/nfs3/compare/nfs3_server-v0.6.0...nfs3_server-v0.7.0) - 2025-06-29

### Changes

- [**breaking**] pass arguments by reference ([#99](https://github.com/Vaiz/nfs3/pull/99))
- [**breaking**] drop xdr-codec dependency ([#98](https://github.com/Vaiz/nfs3/pull/98))
- re-export nfs3_types from nfs3_server and nfs3_client crates ([#94](https://github.com/Vaiz/nfs3/pull/94))
- fix new clippy issues from recent Rust update ([#97](https://github.com/Vaiz/nfs3/pull/97))

## [0.6.0](https://github.com/Vaiz/nfs3/compare/nfs3_server-v0.5.0...nfs3_server-v0.6.0) - 2025-06-15

### Added
Expand Down
4 changes: 2 additions & 2 deletions crates/nfs3_server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nfs3_server"
version = "0.6.0"
version = "0.7.0"
edition.workspace = true
rust-version.workspace = true
homepage.workspace = true
Expand All @@ -22,7 +22,7 @@ __test_reexports = [] # should not be used outside nfs3_tests crate
memfs = []

[dependencies]
nfs3_types = { path = "../nfs3_types", version = "0.3.4" }
nfs3_types = { path = "../nfs3_types", version = "0.4.0" }

tokio = { workspace = true, features = ["net", "io-util", "sync", "fs", "rt", "macros", "time"] }
tracing.workspace = true
Expand Down
6 changes: 3 additions & 3 deletions crates/nfs3_tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ license.workspace = true
publish = false # this crate contains only tests

[dependencies]
nfs3_client = { path = "../nfs3_client", version = "0.4.2", features = ["tokio"] }
nfs3_server = { path = "../nfs3_server", version = "0.6.0", features = ["__test_reexports", "memfs"] }
nfs3_types = { path = "../nfs3_types", version = "0.3.4" }
nfs3_client = { path = "../nfs3_client", version = "0.5.0", features = ["tokio"] }
nfs3_server = { path = "../nfs3_server", version = "0.7.0", features = ["__test_reexports", "memfs"] }
nfs3_types = { path = "../nfs3_types", version = "0.4.0" }

anyhow.workspace = true
intaglio.workspace = true
Expand Down
7 changes: 7 additions & 0 deletions crates/nfs3_types/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.4.0](https://github.com/Vaiz/nfs3/compare/nfs3_types-v0.3.4...nfs3_types-v0.4.0) - 2025-06-29

### Changes

- [**breaking**] drop xdr-codec dependency ([#98](https://github.com/Vaiz/nfs3/pull/98))
- add expect and eq methods for Nfs3Result ([#101](https://github.com/Vaiz/nfs3/pull/101))

## [0.3.4](https://github.com/Vaiz/nfs3/compare/nfs3_types-v0.3.3...nfs3_types-v0.3.4) - 2025-06-15

### Changes
Expand Down
4 changes: 2 additions & 2 deletions crates/nfs3_types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nfs3_types"
version = "0.3.4"
version = "0.4.0"
edition.workspace = true
rust-version.workspace = true
authors.workspace = true
Expand All @@ -12,7 +12,7 @@ readme = "README.md"
keywords = ["xdr", "rfc1014", "nfs", "nfs3", "rfc1813"]

[dependencies]
nfs3_macros = { path = "../nfs3_macros", version = "0.3.4" }
nfs3_macros = { path = "../nfs3_macros", version = "0.4.0" }

[package.metadata.cargo-machete]
ignored = ["byteorder"]
Expand Down