├── .github └── workflows │ └── rust.yml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md └── src ├── lib.rs ├── main.rs ├── testing ├── cargo-lock │ ├── input.Cargo.toml │ └── output.Cargo.toml ├── orml │ ├── input.Cargo.toml │ ├── noFlag.Cargo.toml │ ├── notOrml.Cargo.toml │ └── output.Cargo.toml └── plan-toml │ ├── check.Cargo.toml │ ├── input.Cargo.toml │ └── output.Cargo.toml ├── tests.rs └── versions.rs /.github/workflows/rust.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/psvm/HEAD/.github/workflows/rust.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | .vscode 3 | .DS_Store -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/psvm/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/psvm/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/psvm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/psvm/HEAD/README.md -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/psvm/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/psvm/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/testing/cargo-lock/input.Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/psvm/HEAD/src/testing/cargo-lock/input.Cargo.toml -------------------------------------------------------------------------------- /src/testing/cargo-lock/output.Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/psvm/HEAD/src/testing/cargo-lock/output.Cargo.toml -------------------------------------------------------------------------------- /src/testing/orml/input.Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/psvm/HEAD/src/testing/orml/input.Cargo.toml -------------------------------------------------------------------------------- /src/testing/orml/noFlag.Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/psvm/HEAD/src/testing/orml/noFlag.Cargo.toml -------------------------------------------------------------------------------- /src/testing/orml/notOrml.Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/psvm/HEAD/src/testing/orml/notOrml.Cargo.toml -------------------------------------------------------------------------------- /src/testing/orml/output.Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/psvm/HEAD/src/testing/orml/output.Cargo.toml -------------------------------------------------------------------------------- /src/testing/plan-toml/check.Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/psvm/HEAD/src/testing/plan-toml/check.Cargo.toml -------------------------------------------------------------------------------- /src/testing/plan-toml/input.Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/psvm/HEAD/src/testing/plan-toml/input.Cargo.toml -------------------------------------------------------------------------------- /src/testing/plan-toml/output.Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/psvm/HEAD/src/testing/plan-toml/output.Cargo.toml -------------------------------------------------------------------------------- /src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/psvm/HEAD/src/tests.rs -------------------------------------------------------------------------------- /src/versions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/psvm/HEAD/src/versions.rs --------------------------------------------------------------------------------