Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: implement basic derive macro for entity trait [WPB-14952] #858

Merged
merged 2 commits into from
Jan 20, 2025
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
22 changes: 12 additions & 10 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
members = [
"crypto",
"crypto-ffi",
"crypto-attributes",
"crypto-macros",
"keystore",
"keystore-dump",
"mls-provider",
Expand All @@ -25,7 +25,7 @@ cfg-if = "1.0"
const_format = "0.2"
core-crypto = { path = "crypto" }
core-crypto-keystore = { path = "keystore" }
core-crypto-attributes = { path = "crypto-attributes" }
core-crypto-macros = { path = "crypto-macros" }
derive_more = { version = "0.99", features = ["from", "into", "deref", "deref_mut"] }
futures-util = "0.3"
hex = "0.4"
Expand Down
4 changes: 0 additions & 4 deletions crypto-attributes/README.md

This file was deleted.

3 changes: 2 additions & 1 deletion crypto-attributes/Cargo.toml → crypto-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "core-crypto-attributes"
name = "core-crypto-macros"
description = "Macros for core-crypto"
repository = "https://github.com/wireapp/core-crypto"
version = "2.0.0"
Expand All @@ -13,3 +13,4 @@ proc-macro = true
syn = { version = "2", features = ["full"] }
quote = "1"
proc-macro2 = "1"
heck = "0.5"
File renamed without changes.
Loading
Loading