-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add "sorted" macro to JSON data types (#180)
* adding sorted macro to IndexJson * fixing typo * adding AboutJson
- Loading branch information
1 parent
905ccaf
commit d3ab1eb
Showing
7 changed files
with
74 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 5 additions & 5 deletions
10
.../package/snapshots/rattler_conda_types__package__about__test__reconstruct_about_json.snap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
--- | ||
source: crates/rattler_conda_types/src/package/about.rs | ||
expression: "About::from_package_directory(package_dir.path()).unwrap()" | ||
expression: "AboutJson::from_package_directory(package_dir.path()).unwrap()" | ||
--- | ||
channels: | ||
- "https://conda.anaconda.org/conda-forge" | ||
description: "Conda is an open source package management system and environment management system for installing multiple versions of software packages and their dependencies and switching easily between them. It works on Linux, OS X and Windows, and was created for Python programs but can package and distribute any software.\n" | ||
summary: "OS-agnostic, system-level binary package and environment manager." | ||
license: BSD-3-Clause | ||
dev_url: "https://github.com/conda/conda" | ||
doc_url: "https://docs.conda.io/projects/conda/en/stable/" | ||
home: "https://conda.io/" | ||
channels: | ||
- "https://conda.anaconda.org/conda-forge" | ||
license: BSD-3-Clause | ||
summary: "OS-agnostic, system-level binary package and environment manager." | ||
|
12 changes: 6 additions & 6 deletions
12
...ge/snapshots/rattler_conda_types__package__about__test__reconstruct_about_json_mamba.snap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
--- | ||
source: crates/rattler_conda_types/src/package/about.rs | ||
expression: "About::from_package_directory(&package_dir).unwrap()" | ||
expression: "AboutJson::from_package_directory(&package_dir).unwrap()" | ||
--- | ||
channels: | ||
- "https://conda.anaconda.org/conda-forge" | ||
description: "\n[![Build Status](https://github.com/mamba-org/mamba/workflows/CI/badge.svg)](https://github.com/mamba-org/mamba/actions)\n[![Join the Gitter Chat](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/mamba-org/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\n[![docs](https://readthedocs.org/projects/mamba/badge/?version=latest&style=flat)](https://mamba.readthedocs.io/en/latest)\n\n`mamba` is a reimplementation of the conda package manager in C++.\n\n- parallel downloading of repository data and package files using multi-threading\n- libsolv for much faster dependency solving, a state of the art library used in the RPM package manager of Red Hat, Fedora and OpenSUSE\n- core parts of `mamba` are implemented in C++ for maximum efficiency\n\nAt the same time, `mamba` utilizes the same command line parser, package installation and deinstallation code and transaction verification routines as `conda` to stay as compatible as possible.\n\nMamba is part of a bigger ecosystem to make scientific packaging more sustainable. You can read our [announcement blog post](https://medium.com/@QuantStack/open-software-packaging-for-science-61cecee7fc23).\nThe ecosystem also consists of `quetz`, an open source `conda` package server and `boa`, a fast `conda` package builder.\n\n\nPlease refer to the [`mamba` and `micromamba` installation guide](https://mamba.readthedocs.io/en/latest/installation.html) in the documentation.\n\n\n`mamba` and `micromamba` come with features on top of stock `conda`.\n\n\nTo efficiently query repositories and query package dependencies you can use `mamba repoquery` or `micromamba repoquery`.\nSee the [repoquery documentation](https://mamba.readthedocs.io/en/latest/user_guide/mamba.html#repoquery) for details.\n\n\n`micromamba` can be used to install lock files generated by [conda-lock](https://conda-incubator.github.io/conda-lock/) without having to install `conda-lock`. Simply invoke e.g. `micromamba create -n my-env -f conda-lock.yml` with an environment lockfile named `*-lock.yml` or `*-lock.yaml`.\n" | ||
summary: "A fast drop-in alternative to conda, using libsolv for dependency resolution" | ||
license: BSD-3-Clause | ||
license_family: BSD | ||
dev_url: "https://github.com/mamba-org/mamba" | ||
home: "https://github.com/mamba-org/mamba" | ||
channels: | ||
- "https://conda.anaconda.org/conda-forge" | ||
license: BSD-3-Clause | ||
license_family: BSD | ||
summary: "A fast drop-in alternative to conda, using libsolv for dependency resolution" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters