Skip to content

Commit

Permalink
fix serde (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeadie authored Nov 13, 2023
1 parent cd27a0e commit dce0d2a
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@ rustls-native-certs = "0.6.3"
tonic = { version = "0.10.0", default-features = false, features = ["transport", "tls", "tls-roots"] }
rustls-pemfile = "1.0.3"
reqwest = { version = "0.11.21", features = ["json"] }
serde = "1.0.188"
serde_derive = "1.0.188"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.107"
chrono = { version = "0.4.31", features = ["serde"] }
dotenv = "0.15.0"
Expand Down
2 changes: 1 addition & 1 deletion src/flight.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use arrow_flight::decode::FlightRecordBatchStream;
use arrow_flight::sql::client::FlightSqlServiceClient;
use core::panic;

use std::error::Error;
use tonic::transport::Channel;

Expand Down
1 change: 0 additions & 1 deletion src/prices.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ use std::fmt;

use chrono::{DateTime, Utc};
use serde::Deserialize;
use serde_derive::Deserialize;

#[derive(Debug, Deserialize)]
pub struct HistoricalPriceData {
Expand Down

0 comments on commit dce0d2a

Please sign in to comment.