built icon indicating copy to clipboard operation
built copied to clipboard

Provides a crate with information from the time it was built.

Results 11 built issues
Sort by recently updated
recently updated
newest added

Would it be possible to add support for CARGO_CFG_TARGET_FEATURE. Typical example might be "mmx,sse" This would allow programs to report on how optimized they are for various processors (using SIMD...

Hi, I couldn't find the reason but I have a project that the GIT consts are all set to none when built inside gitlab ci. I run the build in...

This changes the previously generic error ("File not found") to produce this when a library crate uses built's set_dependencies gets built: ``` error: failed to run custom build command for...

When a built-dependent crate that uses `.set_dependencies(true)` is published, the `cargo publish` process builds it in an environment where the Cargo.lock file is not found. This produces mysterious-looking output like:...

I have an application that will be distributed for specific CPU models in order to take advantage of specific instructions and different techniques better suited for AMD or Intel. It...

Currently some of the values like crate version or crate name are already present in the generated file, however not all of values are present. What I would like to...

Of all the things that are recorded by built, Cargo.toml and git can change without triggering a rebuild the next time `cargo build` is run. If those options are enabled,...

I'm encountering a problem which I believe is from `get_build_deps()` trying to retrieve the Cargo.lock file from the manifest folder, inside a package using the new Rust 1.64.0 [workspace inheritance](https://doc.rust-lang.org/cargo/reference/workspaces.html#the-package-table)...

Currently, it appears that `built` determines the value of `DEPENDENCIES` by just parsing `Cargo.lock` and extracting the name & version of every entry. This strikes me as suboptimal, as presumably...

An example function built_time() appears for the latest (0.6.1) version of built on docs.rs ``` #[cfg(feature = "chrono")] fn built_time() -> built::chrono::DateTime { built::util::strptime(built_info::BUILT_TIME_UTC) .with_timezone(&built::chrono::offset::Local) } ``` What is the...