-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Refactor: use shared dependencies across crates #153
base: develop
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you for your first contribution! Only minor suggestions.
Can you also rebase of the latest develop?
Cargo.toml
Outdated
clap = { version = "4.5.27", features = ["derive"] } | ||
serde = { version = "1.0", features = ["derive"] } | ||
tokio = { version = "1.43.0", features = ["full"] } | ||
uuid = { version = "1.5", features = ["v4", "serde"] } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
uuid = { version = "1.5", features = ["v4", "serde"] } | |
uuid = { version = "1.12.1", features = ["v4", "serde"] } |
Cargo.toml
Outdated
shared = { path = "shared" } | ||
actix-web = "4.9.0" | ||
clap = { version = "4.5.27", features = ["derive"] } | ||
serde = { version = "1.0", features = ["derive"] } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
serde = { version = "1.0", features = ["derive"] } | |
serde = { version = "1.0.219", features = ["derive"] } |
b655abe
to
143bf24
Compare
All done! |
Hi all, first PR around here, tackling some of the low hanging fruit.
Leaving it on draft in case there's any preliminary reviews before I get the full env working and fully run cargo test (granted it does compile and that is mostly what is relevant for this pr). Clippy and fmt applied.