[package] name = "blockchain-node" version.workspace = true edition.workspace = true authors.workspace = true license.workspace = true description = "REST API node for the blockchain, powered by axum" [[bin]] name = "blockchain-node" path = "src/main.rs" [dependencies] blockchain-core = { path = "../core" } axum = "0.8" tokio = { version = "1", features = ["full"] } tower-http = { version = "0.6", features = ["cors"] } serde = { version = "1", features = ["derive"] } serde_json = "1" tracing = "0.1" tracing-subscriber = { version = "0.3", features = ["env-filter"] } uuid = { version = "1", features = ["v4"] } chrono = { version = "0.4", features = ["serde"] } hex = "0.4"