mirror of
https://github.com/LemmyNet/lemmy
synced 2024-11-22 20:43:05 +00:00
b26aaac523
* Added OAUTH2 OIDC support * Fixes and improvements based on review feedback * use derive_new::new instead of TypedBuilder * merge migrations into a single file * fixes based on review feedback * remove unnecessary hostname_ui config * improvement based on review feedback * improvements based on review feedback * delete user oauth accounts at account deletion * fixes and improvements based on review feedback * removed auto_approve_application * support registration application with sso * improvements based on review feedback * making the TokenResponse an internal struct as it should be * remove duplicate struct * prevent oauth linking to unverified accounts * switched to manually entered username and removed the oauth name claim * fix cargo fmt * fix compile error * improvements based on review feedback * fixes and improvements based on review feedback --------- Co-authored-by: privacyguard <privacyguard@users.noreply.github.com>
37 lines
1 KiB
TOML
37 lines
1 KiB
TOML
[package]
|
|
name = "lemmy_api_crud"
|
|
publish = false
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
description.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
documentation.workspace = true
|
|
repository.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
lemmy_utils = { workspace = true, features = ["full"] }
|
|
lemmy_db_schema = { workspace = true, features = ["full"] }
|
|
lemmy_db_views = { workspace = true, features = ["full"] }
|
|
lemmy_db_views_actor = { workspace = true, features = ["full"] }
|
|
lemmy_api_common = { workspace = true, features = ["full"] }
|
|
activitypub_federation = { workspace = true }
|
|
bcrypt = { workspace = true }
|
|
actix-web = { workspace = true }
|
|
tracing = { workspace = true }
|
|
url = { workspace = true }
|
|
futures.workspace = true
|
|
uuid = { workspace = true }
|
|
moka.workspace = true
|
|
anyhow.workspace = true
|
|
webmention = "0.6.0"
|
|
accept-language = "3.1.0"
|
|
serde_json = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_with = { workspace = true }
|
|
|
|
[package.metadata.cargo-machete]
|
|
ignored = ["futures"]
|