Skip to content

Commit 8a61baf

Browse files
authored
Move to 2021 edition (osa1#385)
1 parent 6036354 commit 8a61baf

File tree

10 files changed

+10
-9
lines changed

10 files changed

+10
-9
lines changed

Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
[workspace]
2+
resolver = "2"
23
members = [
34
"crates/libtiny_client",
45
"crates/libtiny_common",

crates/libtiny_client/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "libtiny_client"
33
version = "0.1.0"
44
authors = ["Ömer Sinan Ağacan <[email protected]>"]
55
description = "An IRC client library, mainly to be used in tiny"
6-
edition = "2018"
6+
edition = "2021"
77

88
[features]
99
default = ["tls-rustls"]

crates/libtiny_common/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
name = "libtiny_common"
33
version = "0.1.0"
44
authors = ["Ömer Sinan Ağacan <[email protected]>"]
5-
edition = "2018"
5+
edition = "2021"

crates/libtiny_logger/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "libtiny_logger"
33
version = "0.1.0"
44
authors = ["Ömer Sinan Ağacan <[email protected]>"]
55
description = "Implements a logging UI for tiny"
6-
edition = "2018"
6+
edition = "2021"
77

88
[dependencies]
99
libtiny_common = { path = "../libtiny_common" }

crates/libtiny_tui/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "libtiny_tui"
33
version = "0.1.0"
44
description = "A terminal UI for tiny"
5-
edition = "2018"
5+
edition = "2021"
66

77
[[bench]]
88
name = "bench"

crates/libtiny_wire/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "libtiny_wire"
33
version = "0.1.0"
44
authors = ["Ömer Sinan Ağacan <[email protected]>"]
5-
edition = "2018"
5+
edition = "2021"
66
description = "IRC message parsing and generation"
77

88
[dependencies]

crates/term_input/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ authors = ["Ömer Sinan Ağacan <[email protected]>"]
55
description = "Input handling for xterm-compatible terminals"
66
repository = "https://github.com/osa1/tiny"
77
license = "MIT"
8-
edition = "2018"
8+
edition = "2021"
99

1010
[dependencies]
1111
libc = "0.2"

crates/term_input_macros/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "term_input_macros"
33
version = "0.2.0"
44
authors = ["Ömer Sinan Ağacan <[email protected]>"]
5-
edition = "2018"
5+
edition = "2021"
66

77
[lib]
88
proc-macro = true

crates/termbox/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ authors = ["Ömer Sinan Ağacan <[email protected]>"]
55
description = "An implementation of termbox API"
66
repository = "https://github.com/osa1/tiny"
77
license = "MIT"
8-
edition = "2018"
8+
edition = "2021"
99

1010
[dependencies]
1111
libc = "0.2"

crates/tiny/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ repository = "https://github.com/osa1/tiny"
66
readme = "README.md"
77
license = "MIT"
88
description = "An IRC client"
9-
edition = "2018"
9+
edition = "2021"
1010

1111
[features]
1212
default = ["tls-rustls"]

0 commit comments

Comments
 (0)