Skip to content

Commit e161933

Browse files
committed
macro expander errors
1 parent fec885a commit e161933

File tree

5 files changed

+153
-29
lines changed

5 files changed

+153
-29
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/.vscode/*

backend/Cargo.lock

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

backend/Cargo.toml

+4-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,10 @@ dotenvy = "0.15"
1313
jsonrpsee = { version = "0.24", features = ["http-client"] }
1414
reqwest = { version = "0.12.12", features = ["json"] }
1515
serde = { version = "1", features = ["derive"] }
16-
serde_json = "1"
16+
serde_json = { version = "1.0", default-features = false, features = [
17+
"alloc",
18+
"raw_value",
19+
] }
1720
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
1821
tower-http = { version = "0.5", features = ["cors"] }
1922
tracing = "0.1"

0 commit comments

Comments
 (0)