From b5d5da761968ec84f14d913d761d7a3d4809fc4e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B5=D0=BD=D0=B8=D1=81=20=D0=94=D1=80=D0=BE=D0=B6?= =?UTF-8?q?=D0=B6=D0=B8=D0=BD?= Date: Fri, 21 May 2021 14:38:26 +0300 Subject: [PATCH] Prepare for publishing --- Cargo.toml | 5 +++-- README.md | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 32e7975..9edefe4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,9 +3,10 @@ name = "qvnt" version = "0.1.0" authors = ["Denis Drozhzhin "] edition = "2018" -repository = "https://github.com/MucTepDayH16/qvnt.git" +repository = "https://github.com/MucTepDayH16/qvnt/" readme = "README.md" -description = "Quantum Simulation" +description = "Advanced quantum computation simulator." +license = "MIT OR Apache-2.0" [dependencies] num = "0.4" diff --git a/README.md b/README.md index 8e63be0..563bd13 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ let mut q_reg = QReg::new(10).alias_char('x'); // or with initial state, where 3 qubits are already in state |1> // let q_reg = QReg::new(10).alias_char('x').init_state(0b0011100000); -// get register 'x', to interact with specified qubits +// get virtual register 'x', to interact with specified qubits let x = q_reg.get_vreg_by_char('x').unwrap(); // create qft operation, acting on first 5 qubits in q_reg