File tree Expand file tree Collapse file tree 7 files changed +27
-19
lines changed Expand file tree Collapse file tree 7 files changed +27
-19
lines changed File renamed without changes.
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " uefi"
3
3
version = " 0.17.0"
4
- authors = [" Gabriel Majeri <gabriel.majeri6@gmail.com>" ]
4
+ authors = [
5
+ " The Rust OSDev team"
6
+ ]
5
7
readme = " README.md"
6
8
edition = " 2021"
7
9
exclude = [
@@ -12,7 +14,7 @@ exclude = [
12
14
" uefi-test-runner/**" ,
13
15
" xtask/**" ,
14
16
]
15
- description = " Safe and easy-to-use wrapper for building UEFI apps"
17
+ description = " Safe and easy-to-use wrapper for building UEFI apps. "
16
18
repository = " https://github.com/rust-osdev/uefi-rs"
17
19
keywords = [" uefi" , " efi" ]
18
20
categories = [" embedded" , " no-std" , " api-bindings" ]
@@ -30,7 +32,7 @@ panic-on-logger-errors = []
30
32
31
33
[dependencies ]
32
34
bitflags = " 1.3.1"
33
- log = { version = " 0.4.5 " , default-features = false }
35
+ log = { version = " 0.4.17 " , default-features = false }
34
36
ucs2 = " 0.3.2"
35
37
uefi-macros = " 0.8.0"
36
38
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " uefi-macros"
3
3
version = " 0.8.1"
4
- authors = [" Hadrien G. <knights_of_ni@gmx.com>" ]
4
+ authors = [
5
+ " The Rust OSDev team"
6
+ ]
5
7
readme = " README.md"
6
8
edition = " 2021"
7
- description = " Procedural macros for the uefi-rs crate"
9
+ description = " Procedural macros for the uefi-rs crate. "
8
10
repository = " https://github.com/rust-osdev/uefi-rs"
9
11
keywords = [" uefi" , " efi" ]
10
12
categories = [" embedded" , " no-std" , " api-bindings" ]
11
13
license = " MPL-2.0"
12
14
13
- [badges ]
14
- travis-ci = { repository = " rust-osdev/uefi-rs" }
15
- is-it-maintained-issue-resolution = { repository = " rust-osdev/uefi-rs" }
16
- is-it-maintained-open-issues = { repository = " rust-osdev/uefi-rs" }
17
-
18
15
[lib ]
19
16
proc-macro = true
20
17
Original file line number Diff line number Diff line change @@ -3,16 +3,12 @@ name = "uefi-services"
3
3
version = " 0.14.0"
4
4
authors = [" Gabriel Majeri <gabriel.majeri6@gmail.com>" ]
5
5
edition = " 2021"
6
- description = " Higher-level utilities for uefi-rs"
6
+ description = " Higher-level utilities for the uefi-rs crate. "
7
7
repository = " https://github.com/rust-osdev/uefi-rs"
8
8
keywords = [" uefi" , " efi" ]
9
9
categories = [" embedded" , " no-std" , " api-bindings" ]
10
10
license = " MPL-2.0"
11
-
12
- [badges ]
13
- travis-ci = { repository = " rust-osdev/uefi-rs" }
14
- is-it-maintained-issue-resolution = { repository = " rust-osdev/uefi-rs" }
15
- is-it-maintained-open-issues = { repository = " rust-osdev/uefi-rs" }
11
+ readme = " README.md"
16
12
17
13
[dependencies ]
18
14
uefi = { version = " 0.17.0" , features = [" alloc" ] }
Original file line number Diff line number Diff line change
1
+ # uefi-services
2
+
3
+ [ ![ Crates.io] ( https://img.shields.io/crates/v/uefi-services )] ( https://crates.io/crates/uefi-services )
4
+ [ ![ Docs.rs] ( https://docs.rs/uefi-macros/badge.svg )] ( https://docs.rs/uefi-services )
5
+
6
+ This crate enables you some convenience features on top of the
7
+ [ ` uefi ` ] ( https://crates.io/crates/uefi ) crate. It includes a panic handler, a logger, and
8
+ a global allocator.
9
+
10
+ ` uefi-services ` is part of the ` uefi-rs ` project. Please refer to
11
+ < https://github.com/rust-osdev/uefi-rs/ > for comprehensive documentation.
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " uefi-test-runner"
3
3
version = " 0.2.0"
4
- authors = [" Gabriel Majeri <gabriel.majeri6@gmail.com>" ]
4
+ authors = [
5
+ " The Rust OSDev team"
6
+ ]
5
7
publish = false
6
8
edition = " 2021"
7
9
8
10
[dependencies ]
9
11
uefi = { path = " .." , features = [' exts' ] }
10
12
uefi-services = { path = " ../uefi-services" }
11
13
12
- log = { version = " 0.4.11 " , default-features = false }
14
+ log = { version = " 0.4.17 " , default-features = false }
13
15
14
16
qemu-exit = " 3.0.0"
15
17
Original file line number Diff line number Diff line change @@ -99,7 +99,7 @@ fn check_screenshot(bt: &BootServices, name: &str) {
99
99
. open_protocol_exclusive :: < Serial > ( serial_handle)
100
100
. expect ( "Could not open serial protocol" ) ;
101
101
102
- // Set a large timeout to avoid problems with Travis
102
+ // Set a large timeout to avoid problems with CI
103
103
let mut io_mode = * serial. io_mode ( ) ;
104
104
io_mode. timeout = 10_000_000 ;
105
105
serial
You can’t perform that action at this time.
0 commit comments