Skip to content

Commit ef30dde

Browse files
committedApr 6, 2024·
Version 0.2.3
1 parent 83d1e05 commit ef30dde

File tree

5 files changed

+8
-7
lines changed

5 files changed

+8
-7
lines changed
 

‎Cargo.lock

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎Cargo.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ members = ["crates/*"]
33
resolver = "2"
44

55
[workspace.package]
6-
version = "0.2.2"
6+
version = "0.2.3"
77
authors = ["Eric Zhang <ekzhang1@gmail.com>"]
88
license = "MIT"
99
description = "A secure web-based, collaborative terminal."
@@ -17,6 +17,7 @@ clap = { version = "4.4.2", features = ["derive", "env"] }
1717
prost = "0.12.0"
1818
rand = "0.8.5"
1919
serde = { version = "1.0.188", features = ["derive", "rc"] }
20+
sshx-core = { version = "0.2.3", path = "crates/sshx-core" }
2021
tokio = { version = "1.32.0", features = ["full"] }
2122
tokio-stream = { version = "0.1.14", features = ["sync"] }
2223
tonic = { version = "0.10.0", features = ["tls", "tls-webpki-roots"] }

‎crates/sshx-server/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ rand.workspace = true
3030
redis = { version = "0.23.3", features = ["tokio-rustls-comp", "tls-rustls-webpki-roots"] }
3131
serde.workspace = true
3232
sha2 = "0.10.7"
33-
sshx-core = { version = "0.2.2", path = "../sshx-core" }
33+
sshx-core.workspace = true
3434
tokio.workspace = true
3535
tokio-stream.workspace = true
3636
tokio-tungstenite = "0.20.0"

‎crates/sshx/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ ctr = "0.9.2"
2020
encoding_rs = "0.8.31"
2121
nix = { version = "0.27.1", features = ["ioctl", "process", "signal", "term"] }
2222
pin-project = "1.1.3"
23-
sshx-core = { version = "0.2.2", path = "../sshx-core" }
23+
sshx-core.workspace = true
2424
tokio.workspace = true
2525
tokio-stream.workspace = true
2626
tonic.workspace = true

‎vite.config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const commitHash = execSync("git rev-parse --short HEAD").toString().trim();
77

88
export default defineConfig({
99
define: {
10-
__APP_VERSION__: JSON.stringify("0.2.2-" + commitHash),
10+
__APP_VERSION__: JSON.stringify("0.2.3-" + commitHash),
1111
},
1212

1313
plugins: [sveltekit()],

0 commit comments

Comments
 (0)
Please sign in to comment.