This repository has been archived by the owner on Jul 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
change design of TDISP library to no context.
Signed-off-by: Yang, Longlong <[email protected]>
- Loading branch information
1 parent
161f9e0
commit 073fe7c
Showing
37 changed files
with
3,888 additions
and
3,328 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,23 @@ | ||
[package] | ||
name = "tdisp" | ||
license = "BSD-2-Clause-Patent" | ||
version = "0.1.0" | ||
authors = [ | ||
"Jiewen Yao <[email protected]>", | ||
"Xiaoyu Lu <[email protected]>", | ||
"Longlong Yang <[email protected]>" | ||
] | ||
edition = "2018" | ||
|
||
[dev-dependencies] | ||
|
||
[build-dependencies] | ||
|
||
[dependencies] | ||
codec = { path = "../codec" } | ||
bitflags = "1.2.1" | ||
zeroize = { version = "1.5.0", features = ["zeroize_derive"]} | ||
spdmlib = { path = "../spdmlib", default-features = false, features = ["spdm-ring"]} | ||
|
||
|
||
[features] | ||
[package] | ||
name = "tdisp" | ||
license = "BSD-2-Clause-Patent" | ||
version = "0.2.0" | ||
authors = [ | ||
"Jiewen Yao <[email protected]>", | ||
"Xiaoyu Lu <[email protected]>", | ||
"Longlong Yang <[email protected]>" | ||
] | ||
edition = "2018" | ||
|
||
[dev-dependencies] | ||
|
||
[build-dependencies] | ||
|
||
[dependencies] | ||
codec = { path = "../codec" } | ||
bitflags = "1.2.1" | ||
spdmlib = { path = "../spdmlib", default-features = false, features = ["spdm-ring"]} | ||
conquer-once = { version = "0.3.2", default-features = false } | ||
spin = { version = "0.9.8" } | ||
|
||
[features] |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,13 @@ | ||
// Copyright (c) 2022 Intel Corporation | ||
// | ||
// SPDX-License-Identifier: Apache-2.0 or MIT | ||
|
||
#[macro_use] | ||
extern crate bitflags; | ||
|
||
pub mod common; | ||
pub mod config; | ||
pub mod context; | ||
pub mod device; | ||
pub mod pci_tdisp; | ||
pub mod state_machine; | ||
pub mod tdisp_codec; | ||
pub mod pci_tdisp_requester; | ||
pub mod pci_tdisp_responder; | ||
// Copyright (c) 2023 Intel Corporation | ||
// | ||
// SPDX-License-Identifier: Apache-2.0 or MIT | ||
|
||
#![forbid(unsafe_code)] | ||
#![cfg_attr(not(feature = "std"), no_std)] | ||
|
||
#[macro_use] | ||
extern crate bitflags; | ||
|
||
pub mod pci_tdisp; | ||
pub mod pci_tdisp_requester; | ||
pub mod pci_tdisp_responder; |
Oops, something went wrong.