Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
397 changes: 145 additions & 252 deletions Cargo.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions pointercrate-core-api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ serde = "1.0.228"
rocket = { workspace = true }
pointercrate-core = {path = "../pointercrate-core"}
pointercrate-core-pages = {path = "../pointercrate-core-pages"}
serde_json = "1.0.145"
serde_json = "1.0.148"
sqlx = { workspace = true }
log = "0.4.28"
log = "0.4.29"
serde_urlencoded = "0.7.0"
maud = "0.27.0"
unic-langid = "0.9.5"
Expand Down
4 changes: 2 additions & 2 deletions pointercrate-core-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ repository.workspace = true
proc-macro = true

[dependencies]
syn = { version = "2.0.109", features = ["full"] }
quote = "1.0.41"
syn = { version = "2.0.111", features = ["full"] }
quote = "1.0.42"
2 changes: 1 addition & 1 deletion pointercrate-core-pages/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ edition.workspace = true
maud = "0.27.0"
pointercrate-core = {path = "../pointercrate-core"}
unic-langid = "0.9.5"
log = "0.4.28"
log = "0.4.29"
2 changes: 1 addition & 1 deletion pointercrate-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ derive_more = { version = "2.0.1", features = ["display"] }
sqlx = { workspace = true }
fluent = "0.17.0"
tokio = "1.48.0"
log = "0.4.28"
log = "0.4.29"
chrono = {version = "0.4.42", features = ["serde"]}
getrandom = "0.3.4"
unic-langid = "0.9.5"
Expand Down
6 changes: 3 additions & 3 deletions pointercrate-demonlist-api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ pointercrate-user = {path = "../pointercrate-user"}
pointercrate-user-api = {path = "../pointercrate-user-api"}
pointercrate-integrate = {path = "../pointercrate-integrate"}
sqlx = { workspace = true }
serde_json = "1.0.145"
log = "0.4.28"
serde_json = "1.0.148"
log = "0.4.29"
nonzero_ext = "0.3.0"
reqwest = {version = "0.12.*", features = ["json"]}
chrono = "0.4.42"
serde = "1.0.228"
governor = "0.10.1"
governor = "0.10.4"
rand = "0.9.2"

[features]
Expand Down
2 changes: 1 addition & 1 deletion pointercrate-demonlist-pages/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ maud = "0.27.0"
chrono = "0.4.42"
url = "2.5.7"
async-trait = "0.1.89"
log = "0.4.28"
log = "0.4.29"
sqlx = { workspace = true }

[features]
Expand Down
2 changes: 1 addition & 1 deletion pointercrate-demonlist/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ sqlx = { workspace = true }
derive_more = { version = "2.0.1", features = ["display"] }
pointercrate-core = {path = "../pointercrate-core"}
pointercrate-user = {path = "../pointercrate-user"}
log = "0.4.28"
log = "0.4.29"
futures = "0.3.31"
chrono = {version = "0.4.42", features = ["serde"]}
url = "2.5.7"
2 changes: 1 addition & 1 deletion pointercrate-example/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ pointercrate-user-api = { version = "0.1.0", path = "../pointercrate-user-api",
pointercrate-user-pages = { version = "0.1.0", path = "../pointercrate-user-pages", features = ["legacy_accounts"] }
rocket = { workspace = true }
unic-langid = { version = "0.9.5", features = ["macros"] }
reqwest = "0.12.24"
reqwest = "0.12.28"
serde = "1.0.228"

[features]
Expand Down
4 changes: 2 additions & 2 deletions pointercrate-integrate/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ sqlx = { workspace = true }
bincode = "1.3.1"
reqwest = "0.12.*"
futures = "0.3.31"
log = "0.4.28"
log = "0.4.29"
chrono = "0.4.42"
tokio = {version = "1.48.0", features = ["rt"]}
pointercrate-demonlist = { path = "../pointercrate-demonlist" }
pointercrate-core = { path = "../pointercrate-core" }
dash-rs = { git = "https://github.com/stadust/dash-rs" }
governor = "0.10.1"
governor = "0.10.4"
nonzero_ext = "0.3.0"

2 changes: 1 addition & 1 deletion pointercrate-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ pointercrate-user-pages = {path = "../pointercrate-user-pages", features = ["leg
serde = "1.0.228"
sqlx = { workspace = true }
rocket = { workspace = true }
serde_json = "1.0.145"
serde_json = "1.0.148"
dotenv = "0.15.0"
serde_urlencoded = "0.7.1"
unic-langid = { version = "0.9.5", features = [ "macros" ]}
6 changes: 3 additions & 3 deletions pointercrate-user-api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ pointercrate-core-api = {path = "../pointercrate-core-api"}
pointercrate-core-pages = {path = "../pointercrate-core-pages"}
pointercrate-core-macros = {path = "../pointercrate-core-macros"}
serde_urlencoded = "0.7.0"
log = "0.4.28"
log = "0.4.29"
base64 = "0.22.1"
nonzero_ext = "0.3.0"
governor = "0.10.1"
governor = "0.10.4"

# Dependencies needed only for oauth2
reqwest = { version = "0.12.24", optional = true, features = ["json"] }
reqwest = { version = "0.12.28", optional = true, features = ["json"] }
chrono = { version = "0.4.42", optional = true }

[features]
Expand Down
2 changes: 1 addition & 1 deletion pointercrate-user/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ serde = "1.0.228"
derive_more = { version = "2.0.1", features = ["display"] }
sqlx = { workspace = true }
jsonwebtoken = "9.3.1"
log = "0.4.28"
log = "0.4.29"
futures = "0.3.31"
bcrypt = "0.17.1"
url = "2.5.7"
Expand Down
Loading