Skip to content

Commit

Permalink
Use ws config
Browse files Browse the repository at this point in the history
  • Loading branch information
idavis committed Sep 16, 2024
1 parent d703438 commit e893ce9
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 13 deletions.
15 changes: 15 additions & 0 deletions Cargo.lock

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

9 changes: 9 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
[workspace]
members = ["pyqir", "qirlib"]
resolver = "2"

[workspace.package]
authors = ["Microsoft"]
version = "0.10.5"
edition = "2021"
license = "MIT"
homepage = "https://github.com/qir-alliance/pyqir"
repository = "https://github.com/qir-alliance/pyqir"

14 changes: 8 additions & 6 deletions pyqir/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,20 +1,22 @@
[package]
authors = ["Microsoft"]
name = "pyqir"
version = "0.10.5"
edition = "2021"
license = "MIT"
description = "PyQIR parses, generates and evaluates the Quantum Intermediate Representation."
readme = "README.md"
homepage = "https://github.com/qir-alliance/pyqir"
repository = "https://github.com/qir-alliance/pyqir"
authors.workspace = true
version.workspace = true
edition.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true


[dependencies]
const-str = "0.5"
llvm-sys-110 = { package = "llvm-sys", version = "110.0", optional = true }
llvm-sys-120 = { package = "llvm-sys", version = "120.3", optional = true }
llvm-sys-130 = { package = "llvm-sys", version = "130.1", optional = true }
llvm-sys-140 = { package = "llvm-sys", version = "140.1", optional = true }
llvm-sys-150 = { package = "llvm-sys", version = "150.2", optional = true }
pyo3 = { version = "0.19", features = ["abi3-py38", "extension-module"] }
qirlib = { path = "../qirlib" }

Expand Down
13 changes: 6 additions & 7 deletions qirlib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
[package]
name = "qirlib"
version = "0.10.5"
edition = "2021"
license = "MIT"
description = "Base Profile QIR library"
build = "build.rs"
readme = "README.md"
homepage = "https://github.com/qir-alliance/pyqir"
repository = "https://github.com/qir-alliance/pyqir"
rust-version = "1.80"
authors.workspace = true
version.workspace = true
edition.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true

[dependencies]
bitvec = "1.0"
Expand Down

0 comments on commit e893ce9

Please sign in to comment.