Skip to content

Commit

Permalink
Dependencies version numbers updated. Configuration file corrected, a…
Browse files Browse the repository at this point in the history
…s requested by a commenter.

Signed-off-by: Robert Drazkowski <Robert.Drazkowski@globallogic.com>
  • Loading branch information
RobertDrazkowskiGL committed Jan 4, 2021
1 parent 67f8f0c commit 386dcae
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 11 deletions.
15 changes: 9 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ name = "parsec"
path = "src/bin/main.rs"

[dependencies]
parsec-interface = { git = "https://github.com/parallaxsecond/parsec-interface-rs.git"}
parsec-interface = "0.22.0"
rand = { version = "0.7.3", features = ["small_rng"], optional = true }
base64 = "0.12.3"
uuid = "0.8.1"
Expand All @@ -38,7 +38,7 @@ structopt = "0.3.17"
derivative = "2.1.1"
version = "3.0.0"
hex = { version = "0.4.2", optional = true }
psa-crypto = { git = "https://github.com/parallaxsecond/rust-psa-crypto", rev = "18dd4dda96d8b61d2e112b9e6ad83e90fe768d78", default-features = false, features = ["operations"], optional = true}
psa-crypto = { version = "0.6.1", default-features = false, features = ["operations"], optional = true }
zeroize = { version = "1.1.0", features = ["zeroize_derive"] }
picky-asn1-x509 = { version = "0.3.2", optional = true }
users = "0.10.0"
Expand Down
25 changes: 22 additions & 3 deletions config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,25 @@ key_info_manager = "on-disk-manager"
# provided, the value is considered to be a string.
#owner_hierarchy_auth = "password"

[[provider]]
provider_type = "CryptoAuthLib"
key_info_manager = "on-disk-manager"
# Example of a CryptoAuthLib provider configuration
# All below parameters depend on what devices, interfaces or parameters are required or supported by
# "rust-cryptoauthlib" wrapper for cryptoauthlib and underlying hardware.
#[[provider]]
#provider_type = "CryptoAuthLib"
#key_info_manager = "on-disk-manager"
# (Required) ATCA device type.
# Supported values: "atecc508a", "atecc608a"
#device_type = "atecc508a"
# (Required) Interface for ATCA device
# Supported values: "i2c"
#iface_type = "i2c"
# (Required) Default wake delay for ATCA device
#wake_delay = 1500
# (Required) Default number of rx retries for ATCA device
#rx_retries = 20
# (Optional - required for i2c) i2c slave addres
#slave_address = 0xc0
# (Optional - required for i2c) i2c bus number
#bus = 1
# (Optional - required for i2c) i2c bus baud rate
#baud = 400000

0 comments on commit 386dcae

Please sign in to comment.