Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
d03b5b7
Upgrade mysql_async
eozturk1 Dec 2, 2021
719f58a
Use mysql_async public errors
eozturk1 Dec 2, 2021
b93d88e
Update Transaction lifetime
eozturk1 Dec 3, 2021
b178fbd
Update Opts usage
eozturk1 Dec 6, 2021
3c82d5f
Update connection usage
eozturk1 Dec 6, 2021
793f2a7
Update query_drop usage along with associated transactions
eozturk1 Dec 6, 2021
c7fc899
Update query_drop usage along with associated transactions
eozturk1 Dec 6, 2021
0f398dd
Update opts usage
eozturk1 Dec 7, 2021
556a9a2
Make connection and transaction mutable
eozturk1 Dec 7, 2021
1ac8a98
Update storage-level errors
eozturk1 Dec 7, 2021
8515bd7
Update async database lifetime
eozturk1 Dec 7, 2021
4da02c1
Update error types and handling
eozturk1 Dec 7, 2021
a73a039
Use *_iter versions of functions
eozturk1 Dec 7, 2021
0c26e12
Use *_exec versions of functions
eozturk1 Dec 7, 2021
2565954
Update connection and transaction (re-)use
eozturk1 Dec 7, 2021
e963efb
Fix Result confusion with mysql_async
eozturk1 Dec 7, 2021
19aada5
Update returned result from query_first
eozturk1 Dec 7, 2021
27a7b54
Update reduce_and_drop usage
eozturk1 Dec 7, 2021
15853bb
Reformat with cargo
eozturk1 Dec 7, 2021
b1ed6cd
Update mysql_async error usage of tests
eozturk1 Dec 7, 2021
fc34aa2
Upgrade Tokio
eozturk1 Dec 7, 2021
ff7319d
Merge branch 'MySQLTokioUpgrade' of https://github.com/eozturk1/akd i…
eozturk1 Dec 7, 2021
d800f46
Merge remote-tracking branch 'upstream/main' into MySQLTokioUpgrade
eozturk1 Dec 7, 2021
5c550fc
Upgrade mysql_async for integration tests
eozturk1 Dec 7, 2021
45af8c9
Make cleanup function visible from the tests
eozturk1 Dec 7, 2021
6d27383
Update poc tokio version
eozturk1 Dec 7, 2021
17773ce
Remove unneeded mysql_async::Params::from calls
eozturk1 Dec 7, 2021
0c78862
Remove unneeded mysql_async::Params::from calls
eozturk1 Dec 7, 2021
8d955ce
Merge branch 'MySQLTokioUpgrade' of https://github.com/eozturk1/akd i…
eozturk1 Dec 7, 2021
3e3fc0b
Upgrade all tokio versions
eozturk1 Dec 7, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion akd/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ keyed_priority_queue = "0.3"
hex = "0.4"
serde = { version = "1", features = ["derive"] }
async-trait = "0.1"
tokio = { version = "0.2", features = ["full"] }
tokio = { version = "1.10.2", features = ["full"] }
async-recursion = "0.3"
log = { version = "0.4.8", features = ["kv_unstable"] }

Expand Down
4 changes: 2 additions & 2 deletions akd_mysql/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ winter-math = "0.1"
rand = "0.8"
serde = { version = "1", features = ["derive"] }
async-trait = "0.1"
tokio = { version = "0.2", features = ["full"] }
tokio = { version = "1.10.2", features = ["full"] }
async-recursion = "0.3"
mysql_async = "0.23.1"
mysql_async = "0.28.1"
log = { version = "0.4.8", features = ["kv_unstable"] }
akd = { path = "../akd" }

Expand Down
Loading