Skip to content

Commit

Permalink
Make proto Cargo.toml a physical file
Browse files Browse the repository at this point in the history
The symlink is breaking the latest obs build.

Signed-off-by: David Mulder <[email protected]>
  • Loading branch information
dmulder committed Apr 11, 2024
1 parent c30d78e commit 9a23aba
Showing 1 changed file with 35 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/proto/Cargo.toml

This file was deleted.

35 changes: 35 additions & 0 deletions src/proto/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
[package]
name = "kanidm_proto"
description = "Kanidm Protocol Bindings for serde"
documentation = "https://docs.rs/kanidm_proto/latest/kanidm_proto/"

version = { workspace = true }
authors = { workspace = true }
rust-version = { workspace = true }
edition = { workspace = true }
license = { workspace = true }
homepage = { workspace = true }
repository = { workspace = true }

[lib]
test = true
doctest = true

[features]
wasm = ["webauthn-rs-proto/wasm"]

[dependencies]
base32 = { workspace = true }
base64urlsafedata = { workspace = true }
num_enum = { workspace = true }
scim_proto = { workspace = true }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
serde_with = { workspace = true }
time = { workspace = true, features = ["serde", "std"] }
tracing = { workspace = true }
url = { workspace = true, features = ["serde"] }
urlencoding = { workspace = true }
utoipa = { workspace = true }
uuid = { workspace = true, features = ["serde"] }
webauthn-rs-proto = { workspace = true }

0 comments on commit 9a23aba

Please sign in to comment.