Skip to content
This repository was archived by the owner on Mar 7, 2021. It is now read-only.

Commit 8ece413

Browse files
committed
Update for const_str_as_bytes being stabalized
1 parent c31c918 commit 8ece413

File tree

8 files changed

+1
-8
lines changed

8 files changed

+1
-8
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ matrix:
44

55
language: rust
66
rust:
7-
- nightly-2019-09-11
7+
- nightly-2019-09-25
88
cache:
99
- cargo: true
1010

tests/chrdev-region-allocation/src/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#![no_std]
2-
#![feature(const_str_as_bytes)]
32

43
use linux_kernel_module::{self, cstr};
54

tests/chrdev/src/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#![no_std]
2-
#![feature(const_str_as_bytes)]
32

43
use linux_kernel_module::{self, cstr};
54

tests/filesystem/src/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#![no_std]
2-
#![feature(const_str_as_bytes)]
32

43
extern crate alloc;
54

tests/printk/src/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#![no_std]
2-
#![feature(const_str_as_bytes)]
32

43
use linux_kernel_module::{self, println};
54

tests/sysctl-get/src/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#![no_std]
2-
#![feature(const_str_as_bytes)]
32

43
use core::sync::atomic::{AtomicBool, Ordering};
54

tests/sysctl/src/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#![no_std]
2-
#![feature(const_str_as_bytes)]
32

43
use core::sync::atomic::AtomicBool;
54

tests/utils/src/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#![no_std]
2-
#![feature(const_str_as_bytes)]
32

43
use linux_kernel_module;
54

0 commit comments

Comments
 (0)