shared-struct 0.1.0

Proc-macro for turning a struct into a shared concurrent wrapper
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[package]
name = "shared-struct"
version = "0.1.0"
edition = "2024"
description = "Proc-macro for turning a struct into a shared concurrent wrapper"
license = "Apache-2.0"

[lib]
proc-macro = true

[dependencies]
syn = { version = "2", features = ["full"] }
quote = "1"
proc-macro2 = "1"

[dev-dependencies]
tokio = { version = "1", features = ["rt", "macros", "sync"] }