25 lines
564 B
TOML
25 lines
564 B
TOML
[package]
|
|
name = "node"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[[bin]]
|
|
name = "nodecli"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
axum = "0.7"
|
|
dotenv = "0.15.0"
|
|
ipconfig = "0.3.2"
|
|
reqwest = { version = "0.11", features = ["blocking","json"] }
|
|
tokio = { version = "1", features = ["full"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
clap = { version = "4", features = ["derive"] }
|
|
serde_json = "1"
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
tower-http = { version = "0.5", features = ["cors"] }
|
|
inquire = "0.6.2"
|
|
futures = "0.3"
|
|
rand = "0.8"
|
|
base64 = "0.21"
|