Skip to content

Commit f6a1d5d

Browse files
committed
chore(all): bump to 0.3.0
1 parent 8b03d12 commit f6a1d5d

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

asport-client/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "asport-client"
3-
version = "0.2.1"
3+
version = "0.3.0"
44
authors = ["Kaede Akino <i@akinokae.de>"]
55
description = "A simple Asport client implementation."
66
categories = ["network-programming"]
@@ -11,8 +11,8 @@ license = "GPL-3.0-or-later"
1111
repository = "https://github.com/AkinoKaede/asport"
1212

1313
[dependencies]
14-
asport = { path = "../asport", version = "0.2.0" }
15-
asport-quinn = { path = "../asport-quinn", version = "0.2.0" }
14+
asport = { path = "../asport", version = "0.3.0" }
15+
asport-quinn = { path = "../asport-quinn", version = "0.3.0" }
1616
base64 = { version = "0.21.7", default-features = false }
1717
bytes = { version = "1.7.1", default-features = false, features = ["std"] }
1818
clap = { version = "4.5.16", default-features = false, features = ["color", "derive", "error-context", "help", "std", "suggestions", "usage"] }

asport-quinn/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "asport-quinn"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
authors = ["Kaede Akino <i@akinokae.de>"]
55
description = "A wrapped quinn to implement ASPORT protocol."
66
categories = ["network-programming"]
@@ -11,7 +11,7 @@ license = "GPL-3.0-or-later"
1111
repository = "https://github.com/AkinoKaede/asport"
1212

1313
[dependencies]
14-
asport = { path = "../asport", version = "0.2.0", features = ["async_marshal", "marshal", "model"] }
14+
asport = { path = "../asport", version = "0.3.0", features = ["async_marshal", "marshal", "model"] }
1515
blake3 = { version = "1.8.2", default-features = false }
1616
bytes = { version = "1.6.1", default-features = false, features = ["std"] }
1717
futures-util = { version = "0.3.30", default-features = false, features = ["io", "std"] }

asport-server/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "asport-server"
3-
version = "0.2.1"
3+
version = "0.3.0"
44
authors = ["Kaede Akino <i@akinokae.de>"]
55
description = "A simple Asport server implementation."
66
categories = ["network-programming"]
@@ -11,8 +11,8 @@ license = "GPL-3.0-or-later"
1111
repository = "https://github.com/AkinoKaede/asport"
1212

1313
[dependencies]
14-
asport = { path = "../asport", version = "0.2.0" }
15-
asport-quinn = { path = "../asport-quinn", version = "0.2.0" }
14+
asport = { path = "../asport", version = "0.3.0" }
15+
asport-quinn = { path = "../asport-quinn", version = "0.3.0" }
1616
base64 = { version = "0.21.7", default-features = false }
1717
bimap = { version = "0.6.3", default-features = false, features = ["std"] }
1818
bitflags = { version = "2.9.1", default-features = false, features = ["std"] }

asport/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "asport"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
authors = ["Kaede Akino <i@akinokae.de>"]
55
description = "An implementation of ASPORT protocol."
66
categories = ["network-programming"]

0 commit comments

Comments
 (0)