Skip to content
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

Use workspace dependencies for chrono and num-complex #115

Merged
merged 1 commit into from
Dec 10, 2024
Merged
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
2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,14 @@ readme = "README.md"
[workspace.dependencies]
ahash = "0.8.11"
anyhow = "1.0.94"
chrono = "0.4.39"
env_logger = "0.11.5"
insta = "1.41.1"
inventory = "0.3.15"
itertools = "0.13.0"
log = "0.4.22"
maplit = "1.0.2"
num-complex = "0.4.6"
numpy = ">= 0.21.0"
prettyplease = "0.2.25"
proc-macro2 = "1.0.92"
Expand Down
4 changes: 2 additions & 2 deletions pyo3-stub-gen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@ readme.workspace = true

[dependencies]
anyhow.workspace = true
chrono.workspace = true
inventory.workspace = true
itertools.workspace = true
log.workspace = true
maplit.workspace = true
num-complex = "0.4.6"
num-complex.workspace = true
numpy = { workspace = true, optional = true }
pyo3.workspace = true
serde.workspace = true
toml.workspace = true
chrono = "0.4.39"

[dependencies.pyo3-stub-gen-derive]
version = "0.6.1"
Expand Down
Loading