-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Clean up repo and dependencies (#194)
* Clean up repo and dependencies This PR makes several changes to clean-up/streamline the repository: - Moves package version, authos, edition, and license to the workspace level to make updates easier. - Moves all dependency version specification to the workspace to make tracking and updating dependencies easier. - Removes dependabot.yml in favor of manual updates, so syncing with ADO release builds crate availability is easier. - Downgrades clap to 4.5.7 for compatibility with ADO. - Removes the rust toolchain file and fixes clippy warnings for 1.78. - Pins to specific release of inkwell rather than using branch master for better predictability. * Fix clippy 1.79 lints * Move inkwell to workspace
- Loading branch information
Showing
14 changed files
with
75 additions
and
77 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,16 @@ | ||
[package] | ||
name = "quantum-sparse-sim" | ||
version = "0.7.1" | ||
authors = ["Microsoft"] | ||
edition = "2021" | ||
license = "MIT" | ||
version.workspace = true | ||
authors.workspace = true | ||
homepage.workspace = true | ||
repository.workspace = true | ||
edition.workspace = true | ||
license.workspace = true | ||
|
||
[dependencies] | ||
rand = "0.8.5" | ||
rustc-hash = "1.1.0" | ||
num-complex = "0.4" | ||
num-traits = "0.2.19" | ||
num-bigint = { version = "0.4.6", default-features = false } | ||
ndarray = "0.15.4" | ||
rand = { workspace = true } | ||
rustc-hash = { workspace = true } | ||
num-complex = { workspace = true } | ||
num-traits = { workspace = true } | ||
num-bigint = { workspace = true } | ||
ndarray = { workspace = true } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters