Skip to content

Commit

Permalink
fix serde issue
Browse files Browse the repository at this point in the history
  • Loading branch information
ubermensch3dot0 committed Mar 10, 2025
1 parent 97b2e44 commit 97873df
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ log = "0.4"
hex = "0.4"
reqwest = { version = "0.12.2", default-features = false, features = ["blocking", "json", "rustls-tls"] }
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }

# The profile that 'dist' will build with
[profile.dist]
Expand Down
1 change: 1 addition & 0 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ use std::env;
use std::str::FromStr;
use std::fs;
use serde::{Deserialize, Serialize};
use serde_json;
use reqwest;

const VERSION: &str = "0.0.2";
Expand Down

0 comments on commit 97873df

Please sign in to comment.