├── .github ├── FUNDING.yml ├── dependabot.yml └── workflows │ ├── book.yaml │ ├── haskell.yaml │ └── rust.yaml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── book ├── book.toml └── src │ ├── SUMMARY.md │ ├── appendix.md │ ├── aur.md │ ├── configuration.md │ ├── deps.md │ ├── downgrading.md │ ├── faq.md │ ├── gcc-big.png │ ├── gcc-rev.png │ ├── gcc-smaller.png │ ├── gcc.png │ ├── install.md │ ├── introduction.md │ ├── localisation.md │ ├── log.md │ ├── logo.png │ ├── migration.md │ ├── orphans.md │ ├── pacman.md │ ├── philosophy.md │ ├── sbcl.png │ ├── search.md │ ├── security.md │ ├── snapshots.md │ ├── storage.md │ └── usage.md ├── docs └── _config.yml ├── haskell ├── aur │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── Setup.hs │ ├── aur.cabal │ ├── lib │ │ └── Linux │ │ │ └── Arch │ │ │ └── Aur.hs │ └── tests │ │ └── Test.hs ├── aura │ ├── README.md │ ├── assets │ │ └── gcc-graph.png │ ├── aura.cabal │ ├── exec │ │ ├── Aura │ │ │ ├── Commands │ │ │ │ ├── A.hs │ │ │ │ ├── B.hs │ │ │ │ ├── C.hs │ │ │ │ ├── L.hs │ │ │ │ ├── O.hs │ │ │ │ └── P.hs │ │ │ ├── Flags.hs │ │ │ └── Settings │ │ │ │ └── Runtime.hs │ │ └── aura.hs │ ├── lib │ │ └── Aura │ │ │ ├── Build.hs │ │ │ ├── Cache.hs │ │ │ ├── Colour.hs │ │ │ ├── Core.hs │ │ │ ├── Dependencies.hs │ │ │ ├── IO.hs │ │ │ ├── Install.hs │ │ │ ├── Languages.hs │ │ │ ├── Languages │ │ │ └── Fields.hs │ │ │ ├── Logo.hs │ │ │ ├── MakePkg.hs │ │ │ ├── Packages │ │ │ ├── AUR.hs │ │ │ └── Repository.hs │ │ │ ├── Pacman.hs │ │ │ ├── Pkgbuild │ │ │ ├── Fetch.hs │ │ │ ├── Records.hs │ │ │ └── Security.hs │ │ │ ├── Security.hs │ │ │ ├── Settings.hs │ │ │ ├── Settings │ │ │ └── External.hs │ │ │ ├── Shell.hs │ │ │ ├── State.hs │ │ │ ├── Types.hs │ │ │ └── Utils.hs │ ├── misc │ │ ├── aura.8 │ │ ├── aura.conf │ │ ├── aura.conf.5 │ │ └── completions │ │ │ ├── _aura │ │ │ └── bashcompletion.sh │ └── test │ │ ├── Test.hs │ │ ├── bad.PKGBUILD │ │ ├── good.PKGBUILD │ │ └── pacman.conf ├── aursec │ ├── EVIL.md │ ├── Main.hs │ └── aursec.cabal ├── stack.yaml └── stack.yaml.lock ├── lisp ├── README.org ├── aura.asd ├── qlfile ├── qlfile.lock └── src │ ├── localisations.lisp │ ├── package.lisp │ └── security.lisp ├── logo ├── LICENSE ├── favicon-128x128.png ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon-64x64.png ├── large-1300x1300.png ├── logo.svg ├── logo.xcf ├── medium-150x150.png └── small-70x70.png ├── misc ├── aura.8 ├── aura.texi └── completions │ ├── _aura │ ├── aura.fish │ └── bashcompletion.sh └── rust ├── Cargo.lock ├── Cargo.toml ├── aura-core ├── CHANGELOG.md ├── Cargo.toml ├── README.md ├── src │ ├── aur.rs │ ├── aur │ │ └── dependencies.rs │ ├── cache.rs │ ├── deps.rs │ ├── faur.rs │ ├── git.rs │ ├── lib.rs │ ├── logs.rs │ └── snapshot.rs └── tests │ ├── faur.json │ ├── nx.SRCINFO │ └── qlot.SRCINFO ├── aura-pm ├── Cargo.toml ├── README.md ├── deps.png ├── i18n.toml ├── i18n │ ├── ar-SA │ │ └── aura_pm.ftl │ ├── bn-BD │ │ └── aura_pm.ftl │ ├── cs-CZ │ │ └── aura_pm.ftl │ ├── de-DE │ │ └── aura_pm.ftl │ ├── en-US │ │ └── aura_pm.ftl │ ├── eo-EO │ │ └── aura_pm.ftl │ ├── es-ES │ │ └── aura_pm.ftl │ ├── fr-FR │ │ └── aura_pm.ftl │ ├── hi-IN │ │ └── aura_pm.ftl │ ├── hr-HR │ │ └── aura_pm.ftl │ ├── id-ID │ │ └── aura_pm.ftl │ ├── it-IT │ │ └── aura_pm.ftl │ ├── ja-JP │ │ └── aura_pm.ftl │ ├── ko-KR │ │ └── aura_pm.ftl │ ├── la-VA │ │ └── aura_pm.ftl │ ├── nl-NL │ │ └── aura_pm.ftl │ ├── no-NO │ │ └── aura_pm.ftl │ ├── pl-PL │ │ └── aura_pm.ftl │ ├── pt-PT │ │ └── aura_pm.ftl │ ├── ro-RO │ │ └── aura_pm.ftl │ ├── ru-RU │ │ └── aura_pm.ftl │ ├── sr-RS │ │ └── aura_pm.ftl │ ├── sv-SE │ │ └── aura_pm.ftl │ ├── tr-TR │ │ └── aura_pm.ftl │ ├── uk-UA │ │ └── aura_pm.ftl │ ├── vi-VN │ │ └── aura_pm.ftl │ └── zh-CN │ │ └── aura_pm.ftl ├── modules.png ├── src │ ├── command.rs │ ├── command │ │ ├── aur.rs │ │ ├── aur │ │ │ └── build.rs │ │ ├── cache.rs │ │ ├── check.rs │ │ ├── conf.rs │ │ ├── deps.rs │ │ ├── free.rs │ │ ├── logs.rs │ │ ├── misc.rs │ │ ├── orphans.rs │ │ ├── snapshot.rs │ │ ├── stats.rs │ │ └── thanks.rs │ ├── dirs.rs │ ├── env.rs │ ├── error.rs │ ├── fetch.rs │ ├── flags.rs │ ├── lib.rs │ ├── localization.rs │ ├── macros.rs │ ├── main.rs │ ├── makepkg.rs │ ├── pacman.rs │ └── utils.rs └── tests │ ├── bare-config.toml │ └── simple-config.toml ├── deny.toml ├── i18n.toml ├── r2d2-alpm ├── CHANGELOG.md ├── Cargo.toml ├── README.md └── src │ └── lib.rs ├── rust-toolchain.toml └── rustfmt.toml /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: fosskers 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/book.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/.github/workflows/book.yaml -------------------------------------------------------------------------------- /.github/workflows/haskell.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/.github/workflows/haskell.yaml -------------------------------------------------------------------------------- /.github/workflows/rust.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/.github/workflows/rust.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/README.md -------------------------------------------------------------------------------- /book/book.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/book/book.toml -------------------------------------------------------------------------------- /book/src/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/book/src/SUMMARY.md -------------------------------------------------------------------------------- /book/src/appendix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/book/src/appendix.md -------------------------------------------------------------------------------- /book/src/aur.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/book/src/aur.md -------------------------------------------------------------------------------- /book/src/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/book/src/configuration.md -------------------------------------------------------------------------------- /book/src/deps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/book/src/deps.md -------------------------------------------------------------------------------- /book/src/downgrading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/book/src/downgrading.md -------------------------------------------------------------------------------- /book/src/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/book/src/faq.md -------------------------------------------------------------------------------- /book/src/gcc-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/book/src/gcc-big.png -------------------------------------------------------------------------------- /book/src/gcc-rev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/book/src/gcc-rev.png -------------------------------------------------------------------------------- /book/src/gcc-smaller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/book/src/gcc-smaller.png -------------------------------------------------------------------------------- /book/src/gcc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/book/src/gcc.png -------------------------------------------------------------------------------- /book/src/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/book/src/install.md -------------------------------------------------------------------------------- /book/src/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/book/src/introduction.md -------------------------------------------------------------------------------- /book/src/localisation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/book/src/localisation.md -------------------------------------------------------------------------------- /book/src/log.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/book/src/log.md -------------------------------------------------------------------------------- /book/src/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/book/src/logo.png -------------------------------------------------------------------------------- /book/src/migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/book/src/migration.md -------------------------------------------------------------------------------- /book/src/orphans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/book/src/orphans.md -------------------------------------------------------------------------------- /book/src/pacman.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/book/src/pacman.md -------------------------------------------------------------------------------- /book/src/philosophy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/book/src/philosophy.md -------------------------------------------------------------------------------- /book/src/sbcl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/book/src/sbcl.png -------------------------------------------------------------------------------- /book/src/search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/book/src/search.md -------------------------------------------------------------------------------- /book/src/security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/book/src/security.md -------------------------------------------------------------------------------- /book/src/snapshots.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/book/src/snapshots.md -------------------------------------------------------------------------------- /book/src/storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/book/src/storage.md -------------------------------------------------------------------------------- /book/src/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/book/src/usage.md -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /haskell/aur/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/haskell/aur/CHANGELOG.md -------------------------------------------------------------------------------- /haskell/aur/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/haskell/aur/LICENSE -------------------------------------------------------------------------------- /haskell/aur/README.md: -------------------------------------------------------------------------------- 1 | # haskell-aur 2 | 3 | Access metadata from the Arch Linux User Repository. 4 | -------------------------------------------------------------------------------- /haskell/aur/Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /haskell/aur/aur.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/haskell/aur/aur.cabal -------------------------------------------------------------------------------- /haskell/aur/lib/Linux/Arch/Aur.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/haskell/aur/lib/Linux/Arch/Aur.hs -------------------------------------------------------------------------------- /haskell/aur/tests/Test.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/haskell/aur/tests/Test.hs -------------------------------------------------------------------------------- /haskell/aura/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/haskell/aura/README.md -------------------------------------------------------------------------------- /haskell/aura/assets/gcc-graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/haskell/aura/assets/gcc-graph.png -------------------------------------------------------------------------------- /haskell/aura/aura.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/haskell/aura/aura.cabal -------------------------------------------------------------------------------- /haskell/aura/exec/Aura/Commands/A.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/haskell/aura/exec/Aura/Commands/A.hs -------------------------------------------------------------------------------- /haskell/aura/exec/Aura/Commands/B.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/haskell/aura/exec/Aura/Commands/B.hs -------------------------------------------------------------------------------- /haskell/aura/exec/Aura/Commands/C.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/haskell/aura/exec/Aura/Commands/C.hs -------------------------------------------------------------------------------- /haskell/aura/exec/Aura/Commands/L.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/haskell/aura/exec/Aura/Commands/L.hs -------------------------------------------------------------------------------- /haskell/aura/exec/Aura/Commands/O.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/haskell/aura/exec/Aura/Commands/O.hs -------------------------------------------------------------------------------- /haskell/aura/exec/Aura/Commands/P.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/haskell/aura/exec/Aura/Commands/P.hs -------------------------------------------------------------------------------- /haskell/aura/exec/Aura/Flags.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/haskell/aura/exec/Aura/Flags.hs -------------------------------------------------------------------------------- /haskell/aura/exec/Aura/Settings/Runtime.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/haskell/aura/exec/Aura/Settings/Runtime.hs -------------------------------------------------------------------------------- /haskell/aura/exec/aura.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/haskell/aura/exec/aura.hs -------------------------------------------------------------------------------- /haskell/aura/lib/Aura/Build.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/haskell/aura/lib/Aura/Build.hs -------------------------------------------------------------------------------- /haskell/aura/lib/Aura/Cache.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/haskell/aura/lib/Aura/Cache.hs -------------------------------------------------------------------------------- /haskell/aura/lib/Aura/Colour.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/haskell/aura/lib/Aura/Colour.hs -------------------------------------------------------------------------------- /haskell/aura/lib/Aura/Core.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/haskell/aura/lib/Aura/Core.hs -------------------------------------------------------------------------------- /haskell/aura/lib/Aura/Dependencies.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/haskell/aura/lib/Aura/Dependencies.hs -------------------------------------------------------------------------------- /haskell/aura/lib/Aura/IO.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/haskell/aura/lib/Aura/IO.hs -------------------------------------------------------------------------------- /haskell/aura/lib/Aura/Install.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/haskell/aura/lib/Aura/Install.hs -------------------------------------------------------------------------------- /haskell/aura/lib/Aura/Languages.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/haskell/aura/lib/Aura/Languages.hs -------------------------------------------------------------------------------- /haskell/aura/lib/Aura/Languages/Fields.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/haskell/aura/lib/Aura/Languages/Fields.hs -------------------------------------------------------------------------------- /haskell/aura/lib/Aura/Logo.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/haskell/aura/lib/Aura/Logo.hs -------------------------------------------------------------------------------- /haskell/aura/lib/Aura/MakePkg.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/haskell/aura/lib/Aura/MakePkg.hs -------------------------------------------------------------------------------- /haskell/aura/lib/Aura/Packages/AUR.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/haskell/aura/lib/Aura/Packages/AUR.hs -------------------------------------------------------------------------------- /haskell/aura/lib/Aura/Packages/Repository.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/haskell/aura/lib/Aura/Packages/Repository.hs -------------------------------------------------------------------------------- /haskell/aura/lib/Aura/Pacman.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/haskell/aura/lib/Aura/Pacman.hs -------------------------------------------------------------------------------- /haskell/aura/lib/Aura/Pkgbuild/Fetch.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/haskell/aura/lib/Aura/Pkgbuild/Fetch.hs -------------------------------------------------------------------------------- /haskell/aura/lib/Aura/Pkgbuild/Records.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/haskell/aura/lib/Aura/Pkgbuild/Records.hs -------------------------------------------------------------------------------- /haskell/aura/lib/Aura/Pkgbuild/Security.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/haskell/aura/lib/Aura/Pkgbuild/Security.hs -------------------------------------------------------------------------------- /haskell/aura/lib/Aura/Security.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/haskell/aura/lib/Aura/Security.hs -------------------------------------------------------------------------------- /haskell/aura/lib/Aura/Settings.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/haskell/aura/lib/Aura/Settings.hs -------------------------------------------------------------------------------- /haskell/aura/lib/Aura/Settings/External.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/haskell/aura/lib/Aura/Settings/External.hs -------------------------------------------------------------------------------- /haskell/aura/lib/Aura/Shell.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/haskell/aura/lib/Aura/Shell.hs -------------------------------------------------------------------------------- /haskell/aura/lib/Aura/State.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/haskell/aura/lib/Aura/State.hs -------------------------------------------------------------------------------- /haskell/aura/lib/Aura/Types.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/haskell/aura/lib/Aura/Types.hs -------------------------------------------------------------------------------- /haskell/aura/lib/Aura/Utils.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/haskell/aura/lib/Aura/Utils.hs -------------------------------------------------------------------------------- /haskell/aura/misc/aura.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/haskell/aura/misc/aura.8 -------------------------------------------------------------------------------- /haskell/aura/misc/aura.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/haskell/aura/misc/aura.conf -------------------------------------------------------------------------------- /haskell/aura/misc/aura.conf.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/haskell/aura/misc/aura.conf.5 -------------------------------------------------------------------------------- /haskell/aura/misc/completions/_aura: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/haskell/aura/misc/completions/_aura -------------------------------------------------------------------------------- /haskell/aura/misc/completions/bashcompletion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/haskell/aura/misc/completions/bashcompletion.sh -------------------------------------------------------------------------------- /haskell/aura/test/Test.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/haskell/aura/test/Test.hs -------------------------------------------------------------------------------- /haskell/aura/test/bad.PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/haskell/aura/test/bad.PKGBUILD -------------------------------------------------------------------------------- /haskell/aura/test/good.PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/haskell/aura/test/good.PKGBUILD -------------------------------------------------------------------------------- /haskell/aura/test/pacman.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/haskell/aura/test/pacman.conf -------------------------------------------------------------------------------- /haskell/aursec/EVIL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/haskell/aursec/EVIL.md -------------------------------------------------------------------------------- /haskell/aursec/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/haskell/aursec/Main.hs -------------------------------------------------------------------------------- /haskell/aursec/aursec.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/haskell/aursec/aursec.cabal -------------------------------------------------------------------------------- /haskell/stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/haskell/stack.yaml -------------------------------------------------------------------------------- /haskell/stack.yaml.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/haskell/stack.yaml.lock -------------------------------------------------------------------------------- /lisp/README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/lisp/README.org -------------------------------------------------------------------------------- /lisp/aura.asd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/lisp/aura.asd -------------------------------------------------------------------------------- /lisp/qlfile: -------------------------------------------------------------------------------- 1 | dist http://dist.ultralisp.org/ 2 | -------------------------------------------------------------------------------- /lisp/qlfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/lisp/qlfile.lock -------------------------------------------------------------------------------- /lisp/src/localisations.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/lisp/src/localisations.lisp -------------------------------------------------------------------------------- /lisp/src/package.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/lisp/src/package.lisp -------------------------------------------------------------------------------- /lisp/src/security.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/lisp/src/security.lisp -------------------------------------------------------------------------------- /logo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/logo/LICENSE -------------------------------------------------------------------------------- /logo/favicon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/logo/favicon-128x128.png -------------------------------------------------------------------------------- /logo/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/logo/favicon-16x16.png -------------------------------------------------------------------------------- /logo/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/logo/favicon-32x32.png -------------------------------------------------------------------------------- /logo/favicon-64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/logo/favicon-64x64.png -------------------------------------------------------------------------------- /logo/large-1300x1300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/logo/large-1300x1300.png -------------------------------------------------------------------------------- /logo/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/logo/logo.svg -------------------------------------------------------------------------------- /logo/logo.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/logo/logo.xcf -------------------------------------------------------------------------------- /logo/medium-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/logo/medium-150x150.png -------------------------------------------------------------------------------- /logo/small-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/logo/small-70x70.png -------------------------------------------------------------------------------- /misc/aura.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/misc/aura.8 -------------------------------------------------------------------------------- /misc/aura.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/misc/aura.texi -------------------------------------------------------------------------------- /misc/completions/_aura: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/misc/completions/_aura -------------------------------------------------------------------------------- /misc/completions/aura.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/misc/completions/aura.fish -------------------------------------------------------------------------------- /misc/completions/bashcompletion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/misc/completions/bashcompletion.sh -------------------------------------------------------------------------------- /rust/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/Cargo.lock -------------------------------------------------------------------------------- /rust/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/Cargo.toml -------------------------------------------------------------------------------- /rust/aura-core/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/aura-core/CHANGELOG.md -------------------------------------------------------------------------------- /rust/aura-core/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/aura-core/Cargo.toml -------------------------------------------------------------------------------- /rust/aura-core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/aura-core/README.md -------------------------------------------------------------------------------- /rust/aura-core/src/aur.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/aura-core/src/aur.rs -------------------------------------------------------------------------------- /rust/aura-core/src/aur/dependencies.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/aura-core/src/aur/dependencies.rs -------------------------------------------------------------------------------- /rust/aura-core/src/cache.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/aura-core/src/cache.rs -------------------------------------------------------------------------------- /rust/aura-core/src/deps.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/aura-core/src/deps.rs -------------------------------------------------------------------------------- /rust/aura-core/src/faur.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/aura-core/src/faur.rs -------------------------------------------------------------------------------- /rust/aura-core/src/git.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/aura-core/src/git.rs -------------------------------------------------------------------------------- /rust/aura-core/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/aura-core/src/lib.rs -------------------------------------------------------------------------------- /rust/aura-core/src/logs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/aura-core/src/logs.rs -------------------------------------------------------------------------------- /rust/aura-core/src/snapshot.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/aura-core/src/snapshot.rs -------------------------------------------------------------------------------- /rust/aura-core/tests/faur.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/aura-core/tests/faur.json -------------------------------------------------------------------------------- /rust/aura-core/tests/nx.SRCINFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/aura-core/tests/nx.SRCINFO -------------------------------------------------------------------------------- /rust/aura-core/tests/qlot.SRCINFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/aura-core/tests/qlot.SRCINFO -------------------------------------------------------------------------------- /rust/aura-pm/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/aura-pm/Cargo.toml -------------------------------------------------------------------------------- /rust/aura-pm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/aura-pm/README.md -------------------------------------------------------------------------------- /rust/aura-pm/deps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/aura-pm/deps.png -------------------------------------------------------------------------------- /rust/aura-pm/i18n.toml: -------------------------------------------------------------------------------- 1 | fallback_language = "en-US" 2 | 3 | [fluent] 4 | assets_dir = "i18n" 5 | -------------------------------------------------------------------------------- /rust/aura-pm/i18n/ar-SA/aura_pm.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/aura-pm/i18n/ar-SA/aura_pm.ftl -------------------------------------------------------------------------------- /rust/aura-pm/i18n/bn-BD/aura_pm.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/aura-pm/i18n/bn-BD/aura_pm.ftl -------------------------------------------------------------------------------- /rust/aura-pm/i18n/cs-CZ/aura_pm.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/aura-pm/i18n/cs-CZ/aura_pm.ftl -------------------------------------------------------------------------------- /rust/aura-pm/i18n/de-DE/aura_pm.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/aura-pm/i18n/de-DE/aura_pm.ftl -------------------------------------------------------------------------------- /rust/aura-pm/i18n/en-US/aura_pm.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/aura-pm/i18n/en-US/aura_pm.ftl -------------------------------------------------------------------------------- /rust/aura-pm/i18n/eo-EO/aura_pm.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/aura-pm/i18n/eo-EO/aura_pm.ftl -------------------------------------------------------------------------------- /rust/aura-pm/i18n/es-ES/aura_pm.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/aura-pm/i18n/es-ES/aura_pm.ftl -------------------------------------------------------------------------------- /rust/aura-pm/i18n/fr-FR/aura_pm.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/aura-pm/i18n/fr-FR/aura_pm.ftl -------------------------------------------------------------------------------- /rust/aura-pm/i18n/hi-IN/aura_pm.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/aura-pm/i18n/hi-IN/aura_pm.ftl -------------------------------------------------------------------------------- /rust/aura-pm/i18n/hr-HR/aura_pm.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/aura-pm/i18n/hr-HR/aura_pm.ftl -------------------------------------------------------------------------------- /rust/aura-pm/i18n/id-ID/aura_pm.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/aura-pm/i18n/id-ID/aura_pm.ftl -------------------------------------------------------------------------------- /rust/aura-pm/i18n/it-IT/aura_pm.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/aura-pm/i18n/it-IT/aura_pm.ftl -------------------------------------------------------------------------------- /rust/aura-pm/i18n/ja-JP/aura_pm.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/aura-pm/i18n/ja-JP/aura_pm.ftl -------------------------------------------------------------------------------- /rust/aura-pm/i18n/ko-KR/aura_pm.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/aura-pm/i18n/ko-KR/aura_pm.ftl -------------------------------------------------------------------------------- /rust/aura-pm/i18n/la-VA/aura_pm.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/aura-pm/i18n/la-VA/aura_pm.ftl -------------------------------------------------------------------------------- /rust/aura-pm/i18n/nl-NL/aura_pm.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/aura-pm/i18n/nl-NL/aura_pm.ftl -------------------------------------------------------------------------------- /rust/aura-pm/i18n/no-NO/aura_pm.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/aura-pm/i18n/no-NO/aura_pm.ftl -------------------------------------------------------------------------------- /rust/aura-pm/i18n/pl-PL/aura_pm.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/aura-pm/i18n/pl-PL/aura_pm.ftl -------------------------------------------------------------------------------- /rust/aura-pm/i18n/pt-PT/aura_pm.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/aura-pm/i18n/pt-PT/aura_pm.ftl -------------------------------------------------------------------------------- /rust/aura-pm/i18n/ro-RO/aura_pm.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/aura-pm/i18n/ro-RO/aura_pm.ftl -------------------------------------------------------------------------------- /rust/aura-pm/i18n/ru-RU/aura_pm.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/aura-pm/i18n/ru-RU/aura_pm.ftl -------------------------------------------------------------------------------- /rust/aura-pm/i18n/sr-RS/aura_pm.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/aura-pm/i18n/sr-RS/aura_pm.ftl -------------------------------------------------------------------------------- /rust/aura-pm/i18n/sv-SE/aura_pm.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/aura-pm/i18n/sv-SE/aura_pm.ftl -------------------------------------------------------------------------------- /rust/aura-pm/i18n/tr-TR/aura_pm.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/aura-pm/i18n/tr-TR/aura_pm.ftl -------------------------------------------------------------------------------- /rust/aura-pm/i18n/uk-UA/aura_pm.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/aura-pm/i18n/uk-UA/aura_pm.ftl -------------------------------------------------------------------------------- /rust/aura-pm/i18n/vi-VN/aura_pm.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/aura-pm/i18n/vi-VN/aura_pm.ftl -------------------------------------------------------------------------------- /rust/aura-pm/i18n/zh-CN/aura_pm.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/aura-pm/i18n/zh-CN/aura_pm.ftl -------------------------------------------------------------------------------- /rust/aura-pm/modules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/aura-pm/modules.png -------------------------------------------------------------------------------- /rust/aura-pm/src/command.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/aura-pm/src/command.rs -------------------------------------------------------------------------------- /rust/aura-pm/src/command/aur.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/aura-pm/src/command/aur.rs -------------------------------------------------------------------------------- /rust/aura-pm/src/command/aur/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/aura-pm/src/command/aur/build.rs -------------------------------------------------------------------------------- /rust/aura-pm/src/command/cache.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/aura-pm/src/command/cache.rs -------------------------------------------------------------------------------- /rust/aura-pm/src/command/check.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/aura-pm/src/command/check.rs -------------------------------------------------------------------------------- /rust/aura-pm/src/command/conf.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/aura-pm/src/command/conf.rs -------------------------------------------------------------------------------- /rust/aura-pm/src/command/deps.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/aura-pm/src/command/deps.rs -------------------------------------------------------------------------------- /rust/aura-pm/src/command/free.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/aura-pm/src/command/free.rs -------------------------------------------------------------------------------- /rust/aura-pm/src/command/logs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/aura-pm/src/command/logs.rs -------------------------------------------------------------------------------- /rust/aura-pm/src/command/misc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/aura-pm/src/command/misc.rs -------------------------------------------------------------------------------- /rust/aura-pm/src/command/orphans.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/aura-pm/src/command/orphans.rs -------------------------------------------------------------------------------- /rust/aura-pm/src/command/snapshot.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/aura-pm/src/command/snapshot.rs -------------------------------------------------------------------------------- /rust/aura-pm/src/command/stats.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/aura-pm/src/command/stats.rs -------------------------------------------------------------------------------- /rust/aura-pm/src/command/thanks.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/aura-pm/src/command/thanks.rs -------------------------------------------------------------------------------- /rust/aura-pm/src/dirs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/aura-pm/src/dirs.rs -------------------------------------------------------------------------------- /rust/aura-pm/src/env.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/aura-pm/src/env.rs -------------------------------------------------------------------------------- /rust/aura-pm/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/aura-pm/src/error.rs -------------------------------------------------------------------------------- /rust/aura-pm/src/fetch.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/aura-pm/src/fetch.rs -------------------------------------------------------------------------------- /rust/aura-pm/src/flags.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/aura-pm/src/flags.rs -------------------------------------------------------------------------------- /rust/aura-pm/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/aura-pm/src/lib.rs -------------------------------------------------------------------------------- /rust/aura-pm/src/localization.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/aura-pm/src/localization.rs -------------------------------------------------------------------------------- /rust/aura-pm/src/macros.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/aura-pm/src/macros.rs -------------------------------------------------------------------------------- /rust/aura-pm/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/aura-pm/src/main.rs -------------------------------------------------------------------------------- /rust/aura-pm/src/makepkg.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/aura-pm/src/makepkg.rs -------------------------------------------------------------------------------- /rust/aura-pm/src/pacman.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/aura-pm/src/pacman.rs -------------------------------------------------------------------------------- /rust/aura-pm/src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/aura-pm/src/utils.rs -------------------------------------------------------------------------------- /rust/aura-pm/tests/bare-config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/aura-pm/tests/bare-config.toml -------------------------------------------------------------------------------- /rust/aura-pm/tests/simple-config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/aura-pm/tests/simple-config.toml -------------------------------------------------------------------------------- /rust/deny.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/deny.toml -------------------------------------------------------------------------------- /rust/i18n.toml: -------------------------------------------------------------------------------- 1 | fallback_language = "en-US" 2 | -------------------------------------------------------------------------------- /rust/r2d2-alpm/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/r2d2-alpm/CHANGELOG.md -------------------------------------------------------------------------------- /rust/r2d2-alpm/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/r2d2-alpm/Cargo.toml -------------------------------------------------------------------------------- /rust/r2d2-alpm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/r2d2-alpm/README.md -------------------------------------------------------------------------------- /rust/r2d2-alpm/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/r2d2-alpm/src/lib.rs -------------------------------------------------------------------------------- /rust/rust-toolchain.toml: -------------------------------------------------------------------------------- 1 | [toolchain] 2 | channel = "nightly" 3 | -------------------------------------------------------------------------------- /rust/rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosskers/aura/HEAD/rust/rustfmt.toml --------------------------------------------------------------------------------