Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,18 +21,26 @@ name = "tuf"
path = "./src/lib.rs"

[dependencies]
bytes = "0.4"

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

bytes should be 1.11

chrono = { version = "0.4", features = [ "serde" ] }
data-encoding = "2.0.0-rc.2"

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

data-encoding should be 2.10

derp = "0.0.10"
hyper = "0.10"
futures = "0.1"
futures-cpupool = "0.1"
futures-fs = "0.0.4"

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

futures-fs is at 0.0.5 and was last updated more than 7y ago. Any reason we want 0.0.4?

http = "0.1"
hyper = "0.12"
itoa = "0.4"
log = "0.4"
ring = { version = "0.12", features = [ "rsa_signing" ] }

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ring should be 0.17

serde = "1"
serde_derive = "1"
serde_json = "1"
tempfile = "3"
tokio = "0.1"

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

tokio should be 1

tokio-serde = "0.2"

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

tokio-serde should probably be 0.9

untrusted = "0.5"

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

untrusted should be 0.9

url = "1"

[dev-dependencies]
lazy_static = "1"

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

While on it, is that still necessary? Are there use cases not covered by LazyLock?

Expand Down
Loading