Rust without cargo, with the idea of eventually stopping wasting energy. Some WIP experiments into making rust work with Guix properly.

Maxime Devos e6fdc7a86b rust-xml5ever: Update to building version 0.4.2. 2 年之前
shared-lib 6979084754 Add missing example 2 年之前
.gitignore 12237ccedd Initial tests 2 年之前
.guix-authorizations 020851ad64 Add channels code. 2 年之前
.guix-channel 31942c4d19 Try fixing news 2 年之前
.news 925a123e55 Fix it again(?) 2 年之前
0001-Port-src-parsers.rs-to-nom-7.patch acb8e22522 Add missing patches to Git 2 年之前
0001-Update-to-new-GTK-version-and-new-version-of-depende.patch c32e2be39e Make 'castor' compatible with recent GTK-related crates. 2 年之前
0001-use-std-time-bump-to-0.5.4.patch acb8e22522 Add missing patches to Git 2 年之前
LICENSE 1604b75ccc Build rust-cfg-if with Guix 2 年之前
README.md 001c85f772 More proper formatting for README.md 2 年之前
antioxidant-ci.scm 7d34a8244d antioxidant-ci: Show intermediate packages as well. 2 年之前
antioxidant-packages.scm e6fdc7a86b rust-xml5ever: Update to building version 0.4.2. 2 年之前
antioxidant.scm 40534c8e13 antioxidant: Export manifest procedures. 2 年之前
drill-update-dependencies.patch d7135dfe34 Update drill for new dependencies. 2 年之前
report 87ad056160 report: final changes 2 年之前
rust-cbindgen-0.19-antioxidant-compatibility.patch d4a9d71231 rust-cbindgen: Correct patch to actually read the json file. 2 年之前
rust-hmac-sha1-update-dependencies.patch df658ff949 rust-hmac-sha1: Add patch for compatibility with new versions of dependencies. 2 年之前
rust-itoa-Reintroduce-fmt.patch 94cd0cacc9 Export crate as necessary. 2 年之前
rust-libnghttp2-unbundle.patch ca28074b1b rust-libnghttp2-sys: Fix build. 2 年之前
rust-meval-update-dependencies.patch d463406c8a rust-meval: Update to building version. 2 年之前
rust-proptest-derive-upgrade-to-stable-proc-macro-ecosyst.patch cdb578946e rust-proptest-derive: Make build with rust-syn-1. 2 年之前
rust-watchexec-nix-compatibility.patch 0c2ab303dc Add patch to rust-watchexec to make it compile against current dependencies. 2 年之前
warp-Update-tokio-rustls-to-v0.23.patch fdcb546507 Update to building version of rust-warp 2 年之前
warp-Update-tungstenite-to-0.17.2.patch fdcb546507 Update to building version of rust-warp 2 年之前

README.md

cargoless-rust-experiments

Rust without cargo, with the idea of eventually stopping wasting energy. Some WIP experiments into making rust work with Guix properly.

Currently, the Rust apps 'agate', 'castor', 'diffr', 'git-absorb', 'hexyl', 'sniffglue' and 'tealdeer' can be built, see guix.scm:

$ guix build -L . -f antioxidant-packages.scm
$ [...]/bin/hexyl
(input some lines)

Warning: some packages have been updated without checking the source code diff!

Using as a channel (for now)

After a "git pull", do:

$ guix git authenticate 020851ad649480ee4769b77a947642e993ea5956 "C1F3 3EE2 0C52 8FDB 7DD7  011F 49E3 EE22 1917 25EE" --keyring=keys

You can also use it as a channel, e.g. with the following configuration

(use-modules (guix ci))

(cons
 (channel
  (name 'antioxidated-packages)
  (url "https://notabug.org/maximed/cargoless-rust-experiments")
  (introduction
   (make-channel-introduction
    "020851ad649480ee4769b77a947642e993ea5956"
    (openpgp-fingerprint
     "C1F3 3EE2 0C52 8FDB 7DD7  011F 49E3 EE22 1917 25EE"))))
 (list (channel-with-substitutes-available
            %default-guix-channel
            "https://ci.guix.gnu.org")))

(TODO: make some vitaminated packages available, test "guix pull")

How to help

  1. Choose a Rust app or library to build.
  2. guix.scm ends with (map vitaminate/auto (list ...)). Add the package to the list.
  3. Run "guix build -L. -f guix.scm" to build it.
  4. If it builds succesfully, go back to (1) and choose something else.
  5. Fix build failures (see next section)
  6. Send a patch to https://notabug.org/maximed/cargoless-rust-experiments/pulls or guix-patches@gnu.org.
  7. Repeat.

Which features are built?

If the package as a #:features #~'("this" "that" ...) argument, then the crate is build with features this and that and their implied features.

If the package has no such argument and Cargo.toml has a "default" feature, then the crate is built with the default feature and all its implied features.

If the package has no such argument and Cargo.toml has no "default" feature, then the crate is built with all features except "nightly" and "unstable".

(for technnical detiails, see 'make-feature-closure' and 'choose-features' in antioxidant.scm)

How to fix build failures

Build failures caused by incompatible features?

What if rust-foo requires the 'yes' feature of rust-bar, and rust-oof requires the absence of the 'yes' feature of rust-bar?

Then add a context-dependent replacement to %replacements:

  ("rust-bar" ,(package-with-rust-features rust-bar #~'() #:metatada "guix-variant=without-yes")
  	      #:for-dependent
	      ,(lambda (dependent)
	         (string=? "rust-oof" (package-name dependent))))

and enable the feature by default in %features.

Build failures caused by missing features.

Does "rust-foo" fail to build because it requires the feature "baz" of "rust-bar"? Then go to %features in guix.scm and add an entry

  ("rust-bar" ,#~'("default" "baz")).

If there's already an entry for "rust-bar", modify the existing entry to add "baz".

Build failures due to non-building features

If you see

  warning: #<<crate-mapping> true-name: "packed_simd" local-name: "packed_simd"> not found in the available crates -- this might cause the build to fail!

and

error[E0463]: can't find crate for `packed_simd`
 --> src/simd/generic.rs:1:1
  |
1 | extern crate packed_simd;
  | ^^^^^^^^^^^^^^^^^^^^^^^^^ can't find crate

the solution is probably to remove "simd" or "generic-simd" feature or such, by making the list of features explicit instead of implicit.

  ("rust-bytecount" ,#~'())

Build failures related to rust-digest

E.g.:

error[E0432]: unresolved imports `digest::BlockInput`, `digest::FixedOutputDirty`
   --> lib/lib.rs:133:14
    |
133 | use digest::{BlockInput, FixedOutputDirty, Reset, Update};
    |              ^^^^^^^^^^  ^^^^^^^^^^^^^^^^
    |              |           |
    |              |           no `FixedOutputDirty` in the root
    |              |           help: a similar name exists in the module: `FixedOutput`
    |              no `BlockInput` in the root

The fixed-length API has been removed in https://github.com/RustCrypto/traits/pull/380. To solve the build failure, maybe update the crate that depends on rust-digest@0.9.0 to a version that supports rust-digest@0.10.0. Alternatively, look if it rust-digest is only used when a certain feature is enabled, and if so, disable that feature.

Unstable Rust

If the crate assumes unstable rust (e.g. by using #![feature ...]), updating the crate often fixes that.

Version incompatibilities

No method named foo from bar? Try updating the crate, maybe an updated crate uses the new API version. Can be caused by over-eagerly replacing rust-syn by a newer version. Could be avoided by implementing support for multiple versions of a crate as dependencies.

Cycles

Changelog

2022-05-12: source code location of binaries can now be inferred. Previously, only src/main.rs was understood as default and crates had to set the 'target' field explicitely. But not all crates do that, e.g. rust-alloc-no-stdlib@2.

'set-platform-independent-manifest-variables' doesn't barf anymore on versions like 1.2.3+4.5.6, allowing rust-bzip2-sys to compile.