diff options
| author | Fuwn <[email protected]> | 2023-04-27 05:56:29 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-04-27 05:56:29 +0000 |
| commit | b5fc653086f494f47bea4be1127d80e7787f6590 (patch) | |
| tree | 2f7cc46151dee309252d494e42e7b860acf2518b | |
| parent | feat(rossweisse): initial implementation of struct router framework (diff) | |
| download | windmark-b5fc653086f494f47bea4be1127d80e7787f6590.tar.xz windmark-b5fc653086f494f47bea4be1127d80e7787f6590.zip | |
deps(syn): fix feature requirement for publish
| -rw-r--r-- | rossweisse/Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rossweisse/Cargo.toml b/rossweisse/Cargo.toml index bba907c..5dd044b 100644 --- a/rossweisse/Cargo.toml +++ b/rossweisse/Cargo.toml @@ -12,5 +12,5 @@ proc-macro = true [dependencies] quote = "1.0.26" # Quasi-quoting -syn = "2.0.15" # Source Code Parsing +syn = { version = "2.0.15", features = ["full"] } # Source Code Parsing proc-macro2 = "1.0.56" # `proc-macro` Wrapper |