Skip to content

Commit

Permalink
Merge pull request #202 from friendbear/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
friendbear authored Jan 21, 2025
2 parents 0daaea8 + 1609bcd commit e3b2aac
Show file tree
Hide file tree
Showing 12 changed files with 485 additions and 141 deletions.
586 changes: 465 additions & 121 deletions Cargo.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion examples/l06_library_data_type/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ edition = "2021"

[dependencies]
chrono = "0.4.38"
chrono-tz = "0.9.0"
chrono-tz = "0.10.0"
2 changes: 1 addition & 1 deletion examples/l10_trait/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ anyhow = "1.0.89"
csv = "1.3.0"
#serde = "1.0.183"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.128"
serde_json = "1.0.137"
#generics = { path = "../../" }
2 changes: 1 addition & 1 deletion examples/tools/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ edition = "2021"

[dependencies]
image = "0.25.2"
reqwest = { version = "0.12.7", features = ["blocking", "json", "multipart"] }
reqwest = { version = "0.12.9", features = ["blocking", "json", "multipart"] }
2 changes: 1 addition & 1 deletion practice_collection/axum_web_framework/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ edition = "2021"

[dependencies]
axum = "0.7.5"
tokio = { version = "1.40.0", features = ["macros", "rt-multi-thread"] }
tokio = { version = "1.43.0", features = ["macros", "rt-multi-thread"] }
2 changes: 1 addition & 1 deletion practice_collection/error/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ edition = "2021"
[dependencies]
anyhow = "1.0.89"
num-traits = "0.2.19"
thiserror = "1.0.63"
thiserror = "2.0.9"
4 changes: 2 additions & 2 deletions practice_collection/external_crate_use/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
actix-session = { version = "0.10.0", features = ["cookie-session"] }
actix-session = { version = "0.10.1", features = ["cookie-session"] }
actix-http = "3.9.0"
actix-web = { version = "4.4.0", features = ["openssl"] }
anyhow = "1.0.89"
dotenv = "0.15.0"
env_logger = "0.11.1"
log = "0.4.22"
mime = "0.3.17"
serde = { version = "1.0.209", features = ["derive"] }
serde = { version = "1.0.217", features = ["derive"] }
openssl = { version ="0.10.66", features = ["v110"] }
8 changes: 4 additions & 4 deletions practice_collection/mongodatabase/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ async-trait = "0.1.82"
bson = "2.7.0"
futures-util = "0.3.30"
lombok = "0.4.0"
mongodb = "3.1.0"
proc-macro2 = "1.0.86"
serde = { version = "1.0.209", features = ["derive"] }
tokio = { version = "1.40.0", features = ["full"] }
mongodb = "3.1.1"
proc-macro2 = "1.0.93"
serde = { version = "1.0.217", features = ["derive"] }
tokio = { version = "1.43.0", features = ["full"] }
8 changes: 4 additions & 4 deletions practice_collection/or_mapper/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ dotenv = "0.15.0"
env_logger = "0.11.1"
log = "0.4.22"
lombok = "0.4.0"
proc-macro2 = "1.0.86"
proc-macro2 = "1.0.93"

sea-orm = { version = "1.0", features = [ "sqlx-postgres", "runtime-tokio-rustls", "macros" ] }
serde = { version = "1.0.209", features = ["derive"] }
serde_json = { version = "1.0.128", default-features = false, features = ["alloc"] }
tokio = { version = "1.40.0", features = ["full"] }
serde = { version = "1.0.217", features = ["derive"] }
serde_json = { version = "1.0.137", default-features = false, features = ["alloc"] }
tokio = { version = "1.43.0", features = ["full"] }
6 changes: 3 additions & 3 deletions practice_collection/postgresql/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ once_cell = "1.19.0"

postgres = "0.19.9"
r2d2 = "0.8.10"
r2d2_postgres = "0.18.1"
r2d2_postgres = "0.18.2"

tokio ={ version = "1.40.0", features = ["full"] }
tokio ={ version = "1.43.0", features = ["full"] }
tokio-postgres = "0.7.1"
proc-macro2 = "1.0.86"
proc-macro2 = "1.0.93"
async-trait = "0.1.82"
yaml-rust = "0.4.5"
2 changes: 1 addition & 1 deletion practice_collection/web_framework/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ dotenv = "0.15.0"
env_logger = "0.11.1"
log = "0.4.22"
mime = "0.3.17"
serde = { version = "1.0.209", features = ["derive"] }
serde = { version = "1.0.217", features = ["derive"] }
tera = "1.20.0"
2 changes: 1 addition & 1 deletion practice_collection/youtube_to_mp3/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ tokio = { version = "1", features = ["full"] }
dotenv = "0.15"
hyper = "1.4"
hyper-rustls = "0.27"
reqwest = { version = "0.12.7", features = ["json", "blocking"] }
reqwest = { version = "0.12.9", features = ["json", "blocking"] }
serde = { version = "1.0", features = ["derive"] }
serde_derive = "1.0"
serde_json = "1.0"
Expand Down

0 comments on commit e3b2aac

Please sign in to comment.