Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: nix-community/comma
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.6.0
Choose a base ref
...
head repository: nix-community/comma
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.7.0
Choose a head ref
  • 13 commits
  • 6 files changed
  • 3 contributors

Commits on May 29, 2023

  1. Bump cachix/install-nix-action from 20 to 21

    Bumps [cachix/install-nix-action](https://github.com/cachix/install-nix-action) from 20 to 21.
    - [Release notes](https://github.com/cachix/install-nix-action/releases)
    - [Commits](cachix/install-nix-action@v20...v21)
    
    ---
    updated-dependencies:
    - dependency-name: cachix/install-nix-action
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored May 29, 2023
    Copy the full SHA
    720b268 View commit details

Commits on Jun 6, 2023

  1. Merge pull request #52 from nix-community/dependabot/github_actions/c…

    …achix/install-nix-action-21
    
    Bump cachix/install-nix-action from 20 to 21
    Artturin authored Jun 6, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    50721a1 View commit details
  2. flake instruction

    Artturin committed Jun 6, 2023
    Copy the full SHA
    59a88b9 View commit details

Commits on Jun 19, 2023

  1. Bump cachix/install-nix-action from 21 to 22

    Bumps [cachix/install-nix-action](https://github.com/cachix/install-nix-action) from 21 to 22.
    - [Release notes](https://github.com/cachix/install-nix-action/releases)
    - [Commits](cachix/install-nix-action@v21...v22)
    
    ---
    updated-dependencies:
    - dependency-name: cachix/install-nix-action
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Jun 19, 2023
    Copy the full SHA
    b42e047 View commit details
  2. Merge pull request #53 from nix-community/dependabot/github_actions/c…

    …achix/install-nix-action-22
    
    Bump cachix/install-nix-action from 21 to 22
    Artturin authored Jun 19, 2023
    Copy the full SHA
    3c03993 View commit details

Commits on Jun 28, 2023

  1. Copy the full SHA
    bea6db4 View commit details

Commits on Jul 7, 2023

  1. Copy the full SHA
    96d4bab View commit details

Commits on Jul 14, 2023

  1. Update README.md

    Artturin authored Jul 14, 2023
    Copy the full SHA
    cac54cf View commit details
  2. Copy the full SHA
    4360dbe View commit details
  3. space

    Artturin committed Jul 14, 2023
    Copy the full SHA
    afc957a View commit details
  4. Flake lock file updates:

    • Updated input 'flake-compat':
        'github:edolstra/flake-compat/35bb57c0c8d8b62bbfd284272c928ceb64ddbde9' (2023-01-17)
      → 'github:edolstra/flake-compat/35bb57c0c8d8b62bbfd284272c928ceb64ddbde9' (2023-01-17)
    • Updated input 'naersk':
        'github:nix-community/naersk/88cd22380154a2c36799fe8098888f0f59861a15' (2023-03-23)
      → 'github:nix-community/naersk/abca1fb7a6cfdd355231fc220c3d0302dbb4369a' (2023-07-05)
    • Updated input 'nixpkgs':
        'github:NixOS/nixpkgs/4a65e9f64e53fdca6eed31adba836717a11247d2' (2023-04-05)
      → 'github:NixOS/nixpkgs/c11464c6625d9a71d91a3718a3567394638efc3e' (2023-07-14)
    • Updated input 'utils':
        'github:numtide/flake-utils/93a2b84fc4b70d9e089d029deacc3583435c2ed6' (2023-03-15)
      → 'github:numtide/flake-utils/919d646de7be200f3bf08cb76ae1f09402b6f9b4' (2023-07-11)
    • Added input 'utils/systems':
        'github:nix-systems/default/da67096a3b9bf56a91d16901293e51ba5b49a27e' (2023-04-09)
    Artturin committed Jul 14, 2023
    Copy the full SHA
    40c583a View commit details
  5. cargo upgrade

    cargo update
    Artturin committed Jul 14, 2023
    Copy the full SHA
    10e7e9c View commit details
  6. v1.7.0

    Artturin committed Jul 14, 2023
    Copy the full SHA
    f651806 View commit details
Showing with 128 additions and 293 deletions.
  1. +1 −1 .github/workflows/ci.yml
  2. +78 −254 Cargo.lock
  3. +3 −3 Cargo.toml
  4. +5 −21 README.md
  5. +28 −10 flake.lock
  6. +13 −4 src/main.rs
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -14,5 +14,5 @@ jobs:
if: github.repository_owner == 'nix-community'
steps:
- uses: actions/checkout@v3
- uses: cachix/install-nix-action@v20
- uses: cachix/install-nix-action@v22
- run: nix build --extra-experimental-features nix-command -L -f . -I nixpkgs=https://github.com/NixOS/nixpkgs/archive/nixpkgs-unstable.tar.gz --show-trace
Loading