Git Product home page Git Product logo

Comments (11)

gbj avatar gbj commented on May 9, 2024

It actually seems like rustversion can't accommodate conditionally enabling features?

I can't get this to work
#![rustversion::attr(nightly, feature(unboxed_closures))]

as opposed to
#![cfg_attr(not(feature = "stable"), feature(unboxed_closures))]

@akesson I think you suggested this possibility — any thoughts? I may be doing it wrong.

from leptos.

dlight avatar dlight commented on May 9, 2024

But rustversion can enable/disable an arbitrary amount of code, right? So, what about this?

#[rustversion::nightly]
#![feature(unboxed_closures)]

from leptos.

gbj avatar gbj commented on May 9, 2024

The problem is that that's an outer attribute wrapping an inner attribute, which is not possible. See this issue.

from leptos.

akesson avatar akesson commented on May 9, 2024

I'm not sure what you want to achieve with:
#![rustversion::attr(nightly, feature(unboxed_closures))]

Use nightly, but only if feature unboxed_closures is not available on stable?

Wouldn't simply #[rustversion::nightly] suffice? When the feature is available on stable, the condition would have to be removed manually.

from leptos.

akesson avatar akesson commented on May 9, 2024

Actually, shouldn't it be: #[rustversion::attr(nightly, feature(unboxed_closures))], without the exclamation mark?

from leptos.

gbj avatar gbj commented on May 9, 2024

If you do #[rustversion::attr(nightly, feature(unboxed_closures))] then the compiler interprets it as an annotation of mod context rather than of the crate.

from leptos.

dlight avatar dlight commented on May 9, 2024

Here's an idea: add the required #![feature] using a build script. For all other things, use rustversion. That's hacky but at least you don't have to use a stable feature flag

from leptos.

dlight avatar dlight commented on May 9, 2024

Actually, in this case.. it's much better to enable the stable feature flag in the build script, with this, and people that depend on leptos won't have to set this flag. (or maybe it can enable feature = unboxed_closures directly?)

from leptos.

gbj avatar gbj commented on May 9, 2024

@dlight This seems like a good idea but I'll admit I don't quite know how to do this. If you could give a pointer (or even better a PR) I'd be really grateful.

from leptos.

akesson avatar akesson commented on May 9, 2024

How about using rustc_version for automatically setting the stable feature?

I did a test and it seems to work well.

I can do a PR, but probably best to wait for #44 to be merged because there will be Cargo.toml merge conflicts.

from leptos.

gbj avatar gbj commented on May 9, 2024

I think this should finally be fixed by #148. stable feature still exists but is now automatically enabled if you're on stable Rust.

from leptos.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.