Skip to content

Commit 7b87e53

Browse files
committed
update cargo.toml
1 parent 10d3ce4 commit 7b87e53

File tree

3 files changed

+22
-3
lines changed

3 files changed

+22
-3
lines changed

cable-tunnel-server/backend/Cargo.toml

+7
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,15 @@
11
[package]
22
name = "cable-tunnel-server-backend"
33
version = "0.1.0"
4+
authors = ["Michael Farrell <[email protected]>"]
5+
categories = ["authentication"]
6+
description = "webauthn-rs caBLE tunnel server backend"
47
edition = "2021"
8+
keywords = ["cable", "hybrid", "fido", "webauthn"]
59
license = "MPL-2.0"
10+
readme = "README.md"
11+
repository = "https://github.com/kanidm/webauthn-rs/"
12+
rust-version = "1.66.0"
613

714
[dependencies]
815
cable-tunnel-server-common.workspace = true

cable-tunnel-server/common/Cargo.toml

+8-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,16 @@
11
[package]
22
name = "cable-tunnel-server-common"
33
version = "0.1.0"
4+
authors = ["Michael Farrell <[email protected]>"]
5+
description = "Common components for webauthn-rs' caBLE tunnel server backend and frontend"
46
edition = "2021"
7+
keywords = ["cable", "hybrid", "fido", "webauthn"]
58
license = "MPL-2.0"
9+
readme = "README.md"
10+
repository = "https://github.com/kanidm/webauthn-rs/"
11+
rust-version = "1.66.0"
612

713
[dependencies]
8-
tracing.workspace = true
9-
tracing-subscriber.workspace = true
10-
1114
clap.workspace = true
1215
hex.workspace = true
1316
http-body.workspace = true
@@ -17,4 +20,6 @@ thiserror.workspace = true
1720
tokio.workspace = true
1821
tokio-native-tls.workspace = true
1922
tokio-tungstenite.workspace = true
23+
tracing.workspace = true
24+
tracing-subscriber.workspace = true
2025
tungstenite.workspace = true

cable-tunnel-server/frontend/Cargo.toml

+7
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,15 @@
11
[package]
22
name = "cable-tunnel-server-frontend"
33
version = "0.1.0"
4+
authors = ["Michael Farrell <[email protected]>"]
5+
categories = ["authentication"]
6+
description = "webauthn-rs caBLE tunnel server frontend"
47
edition = "2021"
8+
keywords = ["cable", "hybrid", "fido", "webauthn"]
59
license = "MPL-2.0"
10+
readme = "README.md"
11+
repository = "https://github.com/kanidm/webauthn-rs/"
12+
rust-version = "1.66.0"
613

714
[dependencies]
815
cable-tunnel-server-common.workspace = true

0 commit comments

Comments
 (0)