Update to latest nightly
This commit is contained in:
parent
a37f78fdeb
commit
aa54487c47
7 changed files with 6 additions and 8 deletions
|
@ -1,13 +1,12 @@
|
||||||
cargo-features = ["edition2021"]
|
|
||||||
[package]
|
[package]
|
||||||
name = "eww"
|
name = "eww"
|
||||||
version = "0.2.0"
|
version = "0.2.0"
|
||||||
authors = ["elkowar <5300871+elkowar@users.noreply.github.com>"]
|
authors = ["elkowar <5300871+elkowar@users.noreply.github.com>"]
|
||||||
edition = "2021"
|
|
||||||
description = "Widget system for everyone!"
|
description = "Widget system for everyone!"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
repository = "https://github.com/elkowar/eww"
|
repository = "https://github.com/elkowar/eww"
|
||||||
homepage = "https://github.com/elkowar/eww"
|
homepage = "https://github.com/elkowar/eww"
|
||||||
|
edition = "2021"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,6 @@
|
||||||
#![feature(box_syntax)]
|
#![feature(box_syntax)]
|
||||||
#![feature(box_patterns)]
|
#![feature(box_patterns)]
|
||||||
#![feature(slice_concat_trait)]
|
#![feature(slice_concat_trait)]
|
||||||
#![feature(result_cloned)]
|
|
||||||
#![feature(try_blocks)]
|
#![feature(try_blocks)]
|
||||||
#![feature(nll)]
|
#![feature(nll)]
|
||||||
#![allow(rustdoc::private_intra_doc_links)]
|
#![allow(rustdoc::private_intra_doc_links)]
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
[package]
|
[package]
|
||||||
name = "eww_shared_util"
|
name = "eww_shared_util"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
edition = "2018"
|
edition = "2021"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
serde = {version = "1.0", features = ["derive"]}
|
serde = {version = "1.0", features = ["derive"]}
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
[package]
|
[package]
|
||||||
name = "simplexpr"
|
name = "simplexpr"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
edition = "2018"
|
|
||||||
authors = ["elkowar <5300871+elkowar@users.noreply.github.com>"]
|
authors = ["elkowar <5300871+elkowar@users.noreply.github.com>"]
|
||||||
|
edition = "2021"
|
||||||
|
|
||||||
|
|
||||||
build = "build.rs"
|
build = "build.rs"
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
#![feature(box_patterns)]
|
#![feature(box_patterns)]
|
||||||
#![feature(format_args_capture)]
|
|
||||||
#![feature(pattern)]
|
#![feature(pattern)]
|
||||||
#![feature(box_syntax)]
|
#![feature(box_syntax)]
|
||||||
#![feature(try_blocks)]
|
#![feature(try_blocks)]
|
||||||
#![feature(unwrap_infallible)]
|
#![feature(unwrap_infallible)]
|
||||||
#![feature(never_type)]
|
#![feature(never_type)]
|
||||||
|
#![feature(once_cell)]
|
||||||
|
|
||||||
pub mod ast;
|
pub mod ast;
|
||||||
pub mod dynval;
|
pub mod dynval;
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
name = "yuck"
|
name = "yuck"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
authors = ["elkowar <5300871+elkowar@users.noreply.github.com>"]
|
authors = ["elkowar <5300871+elkowar@users.noreply.github.com>"]
|
||||||
edition = "2018"
|
edition = "2021"
|
||||||
|
|
||||||
build = "build.rs"
|
build = "build.rs"
|
||||||
|
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
nightly-2021-08-10
|
nightly-2022-04-13
|
||||||
|
|
Loading…
Add table
Reference in a new issue