Skip to content

Commit

Permalink
Upgrade to Rust 2021 edition and set minimum rust version
Browse files Browse the repository at this point in the history
  • Loading branch information
lopopolo committed Jul 10, 2024
1 parent 5d03151 commit 93013a9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
5 changes: 3 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
[package]
name = "strudel"
version = "1.0.0"
version = "1.1.0"
authors = ["Ryan Lopopolo <rjl@hyperbo.la>"]
edition = "2018"
edition = "2021"
rust-version = "1.65.0"
description = "Rust port of the st_hash C library"
repository = "https://github.com/artichoke/strudel"
readme = "README.md"
Expand Down
7 changes: 4 additions & 3 deletions strudel-ffi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
[package]
name = "strudel-ffi"
version = "0.1.0"
version = "0.2.0"
authors = ["Ryan Lopopolo <rjl@hyperbo.la>"]
edition = "2018"
edition = "2021"
rust-version = "1.65.0"
description = "Rust port of the st_hash C library"
repository = "https://github.com/artichoke/strudel"
readme = "README.md"
Expand All @@ -18,7 +19,7 @@ name = "strudel_st"
[dependencies]
fnv = "1.0.7"
libc = "0.2.118"
strudel = { version = "=1.0.0", path = ".." }
strudel = { version = "=1.1.0", path = ".." }

[dev-dependencies]
memoffset = "0.9.0"
Expand Down

0 comments on commit 93013a9

Please sign in to comment.