From f1293b23f8f576e5de78250662e95a63b76d612e Mon Sep 17 00:00:00 2001 From: Kyle J Strand Date: Thu, 11 Apr 2024 14:56:22 -0600 Subject: [PATCH] explicitly add license type to Cargo.toml Crates.io apparently considers this crate to have a "nonstandard" license, even though the License text is Apache-2.0. I expect this should fix that. --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index b5582fa..7e73237 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,6 +2,7 @@ name = "rigetti-pyo3" version = "0.3.2" edition = "2021" +license = "apache-2.0" license-file = "LICENSE" repository = "https://github.com/rigetti/rigetti-pyo3" readme = "README.md"