Skip to content

Commit 508802f

Browse files
committed
prepare for beta
this commit removes features gate from the code and from Cargo.toml it also makes use of the new `--edition` flag to simplify the instructions for creating a new project
1 parent b917d64 commit 508802f

File tree

15 files changed

+90
-105
lines changed

15 files changed

+90
-105
lines changed

ci/exceptions/app/Cargo.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
cargo-features = ["edition"]
2-
31
[package]
42
authors = ["Jorge Aparicio <jorge@japaric.io>"]
53
edition = "2018"

ci/exceptions/rt/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#![feature(panic_handler)]
21
#![no_std]
32

43
use core::panic::PanicInfo;

ci/main/app/Cargo.toml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
1-
cargo-features = ["edition"] # <-
2-
31
[package]
4-
edition = "2018" # <-
2+
edition = "2018"
53
name = "app"
64
version = "0.1.0"
75
authors = ["Jorge Aparicio <jorge@japaric.io>"]

ci/main/app4/Cargo.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
cargo-features = ["edition"]
2-
31
[package]
42
authors = ["Jorge Aparicio <jorge@japaric.io>"]
53
edition = "2018"

ci/main/rt/Cargo.toml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
1-
cargo-features = ["edition"]
2-
31
[package]
4-
name = "rt" # <-
5-
authors = ["Jorge Aparicio <jorge@japaric.io>"]
62
edition = "2018"
3+
name = "rt" # <-
74
version = "0.1.0"
5+
authors = ["Jorge Aparicio <jorge@japaric.io>"]
86

97
[dependencies]

ci/main/rt/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#![feature(panic_handler)]
21
#![no_std]
32

43
use core::panic::PanicInfo;

ci/main/rt2/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#![feature(panic_handler)]
21
#![no_std]
32

43
use core::panic::PanicInfo;

ci/memory-layout/src/main.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#![feature(panic_handler)]
21
#![no_main]
32
#![no_std]
43

ci/smallest-no-std/Cargo.toml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
1-
cargo-features = ["edition"] # <-
2-
31
[package]
4-
edition = "2018" # <-
2+
edition = "2018"
53
name = "app"
64
authors = ["Jorge Aparicio <jorge@japaric.io>"]
75
version = "0.1.0"

ci/smallest-no-std/src/main.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#![feature(panic_handler)]
21
#![no_main]
32
#![no_std]
43

0 commit comments

Comments
 (0)