bump version to 0.2.0
This commit is contained in:
parent
d845d6c067
commit
6548c6ec5d
|
@ -278,7 +278,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "ppc750cl"
|
name = "ppc750cl"
|
||||||
version = "0.1.1"
|
version = "0.2.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"num-traits",
|
"num-traits",
|
||||||
"serde",
|
"serde",
|
||||||
|
@ -286,7 +286,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "ppc750cl-flow-graph"
|
name = "ppc750cl-flow-graph"
|
||||||
version = "0.1.1"
|
version = "0.2.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"clap",
|
"clap",
|
||||||
"dol",
|
"dol",
|
||||||
|
@ -298,7 +298,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "ppc750cl-fuzz"
|
name = "ppc750cl-fuzz"
|
||||||
version = "0.1.1"
|
version = "0.2.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"num_cpus",
|
"num_cpus",
|
||||||
"ppc750cl",
|
"ppc750cl",
|
||||||
|
@ -306,7 +306,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "ppc750cl-genisa"
|
name = "ppc750cl-genisa"
|
||||||
version = "0.1.1"
|
version = "0.2.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"itertools",
|
"itertools",
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
|
@ -318,7 +318,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "ppc750cl-py"
|
name = "ppc750cl-py"
|
||||||
version = "0.1.1"
|
version = "0.2.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"ppc750cl",
|
"ppc750cl",
|
||||||
"pyo3",
|
"pyo3",
|
||||||
|
@ -326,7 +326,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "ppc750cl-rand"
|
name = "ppc750cl-rand"
|
||||||
version = "0.1.1"
|
version = "0.2.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"ppc750cl",
|
"ppc750cl",
|
||||||
"rand_core",
|
"rand_core",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "ppc750cl-py"
|
name = "ppc750cl-py"
|
||||||
version = "0.1.1"
|
version = "0.2.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
authors = ["Richard Patel <me@terorie.dev>"]
|
authors = ["Richard Patel <me@terorie.dev>"]
|
||||||
license = "GPL-3.0-or-later"
|
license = "GPL-3.0-or-later"
|
||||||
|
@ -17,4 +17,4 @@ default = ["extension-module"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
pyo3 = { version = "0.16", features = ["multiple-pymethods"] }
|
pyo3 = { version = "0.16", features = ["multiple-pymethods"] }
|
||||||
ppc750cl = { version = "0.1.1", path = "../disasm" }
|
ppc750cl = { version = "0.2.0", path = "../disasm" }
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "ppc750cl"
|
name = "ppc750cl"
|
||||||
version = "0.1.1"
|
version = "0.2.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
authors = ["Richard Patel <me@terorie.dev>"]
|
authors = ["Richard Patel <me@terorie.dev>"]
|
||||||
license = "GPL-3.0-or-later"
|
license = "GPL-3.0-or-later"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "ppc750cl-flow-graph"
|
name = "ppc750cl-flow-graph"
|
||||||
version = "0.1.1"
|
version = "0.2.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
authors = ["riidefi <riidefi@rii.dev>", "Richard Patel <me@terorie.dev>"]
|
authors = ["riidefi <riidefi@rii.dev>", "Richard Patel <me@terorie.dev>"]
|
||||||
license = "GPL-3.0-or-later"
|
license = "GPL-3.0-or-later"
|
||||||
|
@ -13,4 +13,4 @@ dol = { version = "0.1.0", path = "../dol" }
|
||||||
itertools = "0.10"
|
itertools = "0.10"
|
||||||
parse_int = "0.6"
|
parse_int = "0.6"
|
||||||
petgraph = "0.6"
|
petgraph = "0.6"
|
||||||
ppc750cl = { version = "0.1.1", path = "../disasm" }
|
ppc750cl = { version = "0.2.0", path = "../disasm" }
|
||||||
|
|
|
@ -11,7 +11,7 @@ use dol::Dol;
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
let matches = clap::Command::new("ppc750cl-flow-graph")
|
let matches = clap::Command::new("ppc750cl-flow-graph")
|
||||||
.version("0.1.1")
|
.version("0.2.0")
|
||||||
.about("Control flow graph analysis for PowerPC 750CL")
|
.about("Control flow graph analysis for PowerPC 750CL")
|
||||||
.arg(
|
.arg(
|
||||||
clap::Arg::new("START")
|
clap::Arg::new("START")
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "ppc750cl-fuzz"
|
name = "ppc750cl-fuzz"
|
||||||
version = "0.1.1"
|
version = "0.2.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
authors = ["Richard Patel <me@terorie.dev>"]
|
authors = ["Richard Patel <me@terorie.dev>"]
|
||||||
license = "GPL-3.0-or-later"
|
license = "GPL-3.0-or-later"
|
||||||
|
@ -9,4 +9,4 @@ repository = "https://github.com/terorie/ppc750cl"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
num_cpus = "1.13"
|
num_cpus = "1.13"
|
||||||
ppc750cl = { path = "../disasm", version = "0.1.1" }
|
ppc750cl = { path = "../disasm", version = "0.2.0" }
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "ppc750cl-genisa"
|
name = "ppc750cl-genisa"
|
||||||
version = "0.1.1"
|
version = "0.2.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
authors = ["Richard Patel <me@terorie.dev>"]
|
authors = ["Richard Patel <me@terorie.dev>"]
|
||||||
license = "GPL-3.0-or-later"
|
license = "GPL-3.0-or-later"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "ppc750cl-rand"
|
name = "ppc750cl-rand"
|
||||||
version = "0.1.1"
|
version = "0.2.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
authors = ["Richard Patel <me@terorie.dev>"]
|
authors = ["Richard Patel <me@terorie.dev>"]
|
||||||
license = "GPL-3.0-or-later"
|
license = "GPL-3.0-or-later"
|
||||||
|
@ -8,6 +8,6 @@ description = "Generate random PowerPC 750CL instructions"
|
||||||
repository = "https://github.com/terorie/ppc750cl"
|
repository = "https://github.com/terorie/ppc750cl"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
ppc750cl = { path = "../disasm", version = "0.1.1" }
|
ppc750cl = { path = "../disasm", version = "0.2.0" }
|
||||||
rand_core = "0.6"
|
rand_core = "0.6"
|
||||||
sfmt = "0.7"
|
sfmt = "0.7"
|
||||||
|
|
Loading…
Reference in New Issue