-
Notifications
You must be signed in to change notification settings - Fork 99
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
yasna & dependencies update #637
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,24 +10,24 @@ categories = [ "api-bindings" ] | |
keywords = [ "sgx" ] | ||
|
||
[dependencies] | ||
b64-ct = "0.1.0" | ||
b64-ct = "0.1.2" | ||
em-client = { version = "3.0.0", default-features = false, features = ["client"] } | ||
em-node-agent-client = "1.0.0" | ||
hyper = { version = "0.10", default-features = false } | ||
mbedtls = { version = "0.12", default-features = false, features = ["rdrand", "std", "ssl"] } | ||
mbedtls = { version = "0.12", git = "https://github.com/fortanix/rust-mbedtls.git", branch = "mridul/yasna-0.5-crate-update", default-features = false, features = ["rdrand", "std", "ssl"] } | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please don't specify dependencies by pointing to git repos. Does |
||
pkix = ">=0.1.2, <0.3.0" | ||
|
||
rustc-serialize = "0.3.24" | ||
sdkms = { version = "0.3", default-features = false } | ||
serde = "1.0.123" | ||
serde = "1.0.203" | ||
serde_bytes = "0.11" | ||
serde_derive = "1.0.123" | ||
serde_derive = "1.0.203" | ||
serde_json = "1.0" | ||
url = "1" | ||
uuid = { version = "0.6.3", features = ["v4", "serde"] } | ||
uuid_sdkms = { package = "uuid", version = "0.8", features = ["v4", "serde"] } | ||
|
||
yasna = { version = "0.3", features = ["num-bigint", "bit-vec"] } | ||
yasna = { version = "0.5", features = ["num-bigint", "bit-vec"] } | ||
|
||
[target.x86_64-fortanix-unknown-sgx.dependencies] | ||
sgx_pkix = { version = "0.2.0", path = "../intel-sgx/sgx_pkix" } | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,4 +7,4 @@ edition = "2018" | |
|
||
[dependencies] | ||
iron = "0.6.1" | ||
time = "0.3.5" | ||
time = "0.3.36" |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,17 +10,17 @@ description = "API definitions, tools, and client for the Intel Attestation Serv | |
|
||
[dependencies] | ||
base64 = { version = "0.13", optional = true } | ||
bitflags = "1" | ||
bitflags = "2.6" | ||
byteorder = "1.0" | ||
log = "0.4" | ||
percent-encoding = "2.1" | ||
serde_bytes = "0.11" | ||
serde-bytes-repr = { version = "0.1", optional = true } | ||
serde_json = { version = "1", optional = true } | ||
serde = { version = "1.0.7", features = ["derive"] } | ||
serde = { version = "1.0.203", features = ["derive"] } | ||
url = "2.2" | ||
|
||
mbedtls = { version = "0.12", features = ["std"], default-features = false, optional = true } | ||
mbedtls = { version = "0.12", git = "https://github.com/fortanix/rust-mbedtls.git", branch = "mridul/yasna-0.5-crate-update", features = ["std"], default-features = false, optional = true } | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Could you create an issue for tracking this, we should avoid using branch version? |
||
pkix = ">=0.1.0, <0.3.0" | ||
|
||
sgx-isa = { version = "0.4", path = "../sgx-isa" } | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why this version constraint? With the specification
b64-ct = "0.1.0"
users are free to update to0.1.2
if they choose. The same comment applies to many/most other changes in this PR.See https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html#specifying-dependencies-from-cratesio