Skip to content
108 changes: 108 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions domain/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,22 @@ version = "1.0.0-beta2"
edition = "2021"

[dependencies]
aes-gcm = "0.10"
base64 = "0.22"
chrono = { version = "0.4.38", features = ["serde"] }
email_address = "0.2"
entity_api = { path = "../entity_api" }
hex = "0.4"
jsonwebtoken = "9"
service = { path = "../service" }
log = "0.4.22"
rand = "0.8"
reqwest = { version = "0.12.12", features = ["json", "rustls-tls"] }
serde_json = "1.0.128"
serde = {version = "1.0.210", features = ["derive"] }
thiserror = "2.0"
tokio = { version = "1.0", features = ["full"] }
urlencoding = "2.1"

[dependencies.sea-orm]
version = "1.1.0" # sea-orm version
Expand Down
2 changes: 1 addition & 1 deletion domain/src/coaching_relationship.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use sea_orm::{DatabaseConnection, TransactionTrait};

pub use entity_api::coaching_relationship::{
create, find_by_id, find_by_organization_with_user_names, find_by_user,
find_by_user_and_organization_with_user_names, get_relationship_with_user_names,
find_by_user_and_organization_with_user_names, get_relationship_with_user_names, update,
CoachingRelationshipWithUserNames,
};

Expand Down
Loading
Loading