Skip to content

Commit 0b2735f

Browse files
Bathtorjohanmickos
authored andcommitted
Remove feature flag for stabilising try_from
1 parent 9d22a8a commit 0b2735f

File tree

3 files changed

+48
-2
lines changed

3 files changed

+48
-2
lines changed

.gitignore

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
# Generated by Cargo
2+
# will have compiled files and executables
3+
target/
4+
5+
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
6+
# More information here http://doc.crates.io/guide.html#cargotoml-vs-cargolock
7+
# Cargo.lock
8+
9+
# These are backup files generated by rustfmt
10+
**/*.rs.bk
11+
12+
# Eclipse
13+
.project
14+
.metadata
15+
tmp/
16+
*.tmp
17+
*.bak
18+
*.swp
19+
*~.nib
20+
local.properties
21+
.settings/
22+
.loadpath
23+
.recommenders
24+
25+
# External tool builders
26+
.externalToolBuilders/
27+
28+
# Locally stored "Eclipse launch configurations"
29+
*.launch
30+
31+
.DS_Store
32+
33+
# Sublime Text Stuff
34+
*.sublime-project
35+
*.sublime-workspace
36+
37+
### JetBrains-related ignores ###
38+
# Global JetBrains IDE ignore
39+
.idea/
40+
41+
# File-based project format
42+
*.iws

Cargo.lock

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/lib.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
//! Helpers for grouping together data in sub-byte bitfields.
2-
#![feature(try_from)]
3-
42
use std::convert::TryFrom;
53
use std::fmt::Debug;
64

0 commit comments

Comments
 (0)