-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* impl clone on TDAClient * remove leftover dbg * add access to auth token in auth client * doc update * Added error checking in TDauth (#29) * refactored auth module and added error capture * Updated readme * able to initiate TDAClientAuth with TDauth struct * allow TDauth struct to be serialized * don't allow new client if no token exists * cargo clippy and fmt * increment version * updated time expiry buffer on tokens * able to create new TDauth from api configuration * updated auth module * changed handling of client_id * fixed bug in auth token when refresh not present * added pricehistory model and tests * Updated Readme * implemented Quote Model * added quote impl functions * serde config on quotes model * added default fields to Account Model * managed client check if refresh avail * version bump * updated readme and changes
- Loading branch information
Showing
14 changed files
with
567 additions
and
123 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
[package] | ||
name = "tdameritradeclient" | ||
version = "0.4.3" | ||
version = "0.4.4" | ||
authors = ["Jas Bertovic <[email protected]>"] | ||
edition = "2018" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
attohttpc = { version = "0.16.3", features = ["form"] } | ||
attohttpc = { version = "0.19.1", features = ["form"] } | ||
serde_json = "1.0" | ||
serde = {version = "1.0", features = ["derive"]} | ||
url = "2.1.1" | ||
log = "0.4" | ||
|
||
[dev-dependencies] | ||
env_logger = "0.7" | ||
env_logger = "0.9" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.