├── .github ├── FUNDING.yml ├── dependabot.yml └── workflows │ ├── badge.yml │ ├── check-platforms.yml │ ├── check-targets.yml │ ├── check-toolchains.yml │ ├── fast-pr-check.yml │ ├── lints.yml │ ├── readme.yml │ ├── release-please.yml │ └── security.yml ├── .gitignore ├── CHANGELOG.md ├── COPYING ├── Cargo.toml ├── README.md ├── examples └── proc.rs ├── license ├── APACHE └── MIT ├── proc ├── Cargo.toml └── src │ └── lib.rs └── src ├── asset.rs ├── field.rs ├── key.rs ├── lib.rs ├── loader.rs ├── source.rs └── source └── treasury.rs /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcana-engine/goods/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcana-engine/goods/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/badge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcana-engine/goods/HEAD/.github/workflows/badge.yml -------------------------------------------------------------------------------- /.github/workflows/check-platforms.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcana-engine/goods/HEAD/.github/workflows/check-platforms.yml -------------------------------------------------------------------------------- /.github/workflows/check-targets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcana-engine/goods/HEAD/.github/workflows/check-targets.yml -------------------------------------------------------------------------------- /.github/workflows/check-toolchains.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcana-engine/goods/HEAD/.github/workflows/check-toolchains.yml -------------------------------------------------------------------------------- /.github/workflows/fast-pr-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcana-engine/goods/HEAD/.github/workflows/fast-pr-check.yml -------------------------------------------------------------------------------- /.github/workflows/lints.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcana-engine/goods/HEAD/.github/workflows/lints.yml -------------------------------------------------------------------------------- /.github/workflows/readme.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcana-engine/goods/HEAD/.github/workflows/readme.yml -------------------------------------------------------------------------------- /.github/workflows/release-please.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcana-engine/goods/HEAD/.github/workflows/release-please.yml -------------------------------------------------------------------------------- /.github/workflows/security.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcana-engine/goods/HEAD/.github/workflows/security.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | **/*.rs.bk 3 | Cargo.lock 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcana-engine/goods/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcana-engine/goods/HEAD/COPYING -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcana-engine/goods/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcana-engine/goods/HEAD/README.md -------------------------------------------------------------------------------- /examples/proc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcana-engine/goods/HEAD/examples/proc.rs -------------------------------------------------------------------------------- /license/APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcana-engine/goods/HEAD/license/APACHE -------------------------------------------------------------------------------- /license/MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcana-engine/goods/HEAD/license/MIT -------------------------------------------------------------------------------- /proc/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcana-engine/goods/HEAD/proc/Cargo.toml -------------------------------------------------------------------------------- /proc/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcana-engine/goods/HEAD/proc/src/lib.rs -------------------------------------------------------------------------------- /src/asset.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcana-engine/goods/HEAD/src/asset.rs -------------------------------------------------------------------------------- /src/field.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcana-engine/goods/HEAD/src/field.rs -------------------------------------------------------------------------------- /src/key.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcana-engine/goods/HEAD/src/key.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcana-engine/goods/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/loader.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcana-engine/goods/HEAD/src/loader.rs -------------------------------------------------------------------------------- /src/source.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcana-engine/goods/HEAD/src/source.rs -------------------------------------------------------------------------------- /src/source/treasury.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcana-engine/goods/HEAD/src/source/treasury.rs --------------------------------------------------------------------------------