Skip to content

Commit

Permalink
Merge pull request #16 from Qiskit/remove-mit-license
Browse files Browse the repository at this point in the history
Remove MIT from license, and a bit of cruft, in top `Cargo.toml`
  • Loading branch information
jlapeyre authored Jan 11, 2024
2 parents 7692374 + bbb63fa commit 63db045
Showing 1 changed file with 1 addition and 24 deletions.
25 changes: 1 addition & 24 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,28 +5,9 @@ resolver = "2"
[workspace.package]
rust-version = "1.70"
edition = "2021"
license = "MIT OR Apache-2.0"
license = "Apache-2.0"
authors = ["OpenQASM3 parser team"]

[profile.dev]
# Disabling debug info speeds up builds a bunch,
# and we don't rely on it for debugging that much.
# debug = 0

[profile.dev.package]
# These speed up local tests.
# rowan.opt-level = 3
# rustc-hash.opt-level = 3
# smol_str.opt-level = 3
# text-size.opt-level = 3
# # This speeds up `cargo xtask dist`.
# miniz_oxide.opt-level = 3

# [profile.release]
# incremental = true
# # Set this to 1 or 2 to get more useful backtraces in debugger.
# debug = 0

[workspace.dependencies]
# local crates
lexer = { path = "./crates/lexer", version = "0.0.0" }
Expand All @@ -35,11 +16,8 @@ oq3_syntax = { path = "./crates/oq3_syntax", version = "0.0.0" }
semantics = { path = "./crates/semantics", version = "0.0.0" }
source_file = { path = "./crates/source_file", version = "0.0.0" }
sourcegen = { path = "./crates/sourcegen", version = "0.0.0" }
#ast_pyo3 = { path = "./crates/ast_pyo3", version = "0.0.0" }

# non-local crates
# sourcegen has a hard-coded path. This is a bug, it cannot be used as a standalone crate
# sourcegen = { version = "0.0.187", package = "ra_ap_sourcegen" }
limit = { version = "0.0.188", package = "ra_ap_limit" }
stdx = { version = "0.0.188", package = "ra_ap_stdx"}
triomphe = { version = "0.1.8", default-features = false, features = ["std"] }
Expand All @@ -51,6 +29,5 @@ smallvec = { version = "1.10.0", features = [
smol_str = "0.2.0"
nohash-hasher = "0.2.0"
text-size = "1.1.0"

# can't upgrade due to dashmap depending on 0.12.3 currently
hashbrown = { version = "0.12.3", features = ["inline-more"], default-features = false }

0 comments on commit 63db045

Please sign in to comment.