Skip to content

Commit

Permalink
Upgrade to 2021 edition
Browse files Browse the repository at this point in the history
  • Loading branch information
ubolonton committed Mar 15, 2024
1 parent 9a29b07 commit b4fa6f6
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [Unreleased]
- Upgraded to Rust 2021 edition.

## [0.18.0] - 2021-09-26
- Eliminated the build-time dependency on LLVM by putting the raw Rust bindings in source, instead of generating them at build time. This would also make builds faster.
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "emacs"
version = "0.18.0"
edition = "2018"
edition = "2021"
description = "Rust library for creating Emacs's dynamic modules"
homepage = "https://github.com/ubolonton/emacs-module-rs"
documentation = "https://ubolonton.github.io/emacs-module-rs/"
Expand Down
2 changes: 0 additions & 2 deletions src/types/integer.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
use std::convert::TryInto;

use super::*;

impl FromLisp<'_> for i64 {
Expand Down

0 comments on commit b4fa6f6

Please sign in to comment.