-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Use .rcdata to store trampoline type + path to python binary
#15068
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
Changes from 13 commits
e0b9c31
ee7e578
185bc3f
cc9c2e5
97a47f7
509165f
fd2a9ce
3279712
d4303fd
5687577
a5e08c8
d8f67c5
d4131f2
153d854
f7e549d
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 |
|---|---|---|
|
|
@@ -196,7 +196,7 @@ uuid = { version = "1.16.0" } | |
| version-ranges = { git = "https://github.com/astral-sh/pubgrub", rev = "d8efd77673c9a90792da9da31b6c0da7ea8a324b" } | ||
| walkdir = { version = "2.5.0" } | ||
| which = { version = "8.0.0", features = ["regex"] } | ||
| windows = { version = "0.59.0", features = ["Win32_Globalization", "Win32_Security", "Win32_System_Console", "Win32_System_Kernel", "Win32_System_Diagnostics_Debug", "Win32_Storage_FileSystem", "Win32_System_Registry", "Win32_System_IO", "Win32_System_Ioctl"] } | ||
| windows = { version = "0.61.0", features = ["std", "Win32_Globalization", "Win32_System_LibraryLoader", "Win32_System_Console", "Win32_System_Kernel", "Win32_System_Diagnostics_Debug", "Win32_Storage_FileSystem", "Win32_Security", "Win32_System_Registry", "Win32_System_IO", "Win32_System_Ioctl"] } | ||
| windows-registry = { version = "0.5.0" } | ||
| wiremock = { version = "0.6.4" } | ||
| wmi = { version = "0.16.0", default-features = false } | ||
|
|
@@ -215,7 +215,9 @@ hyper = { version = "1.4.1", features = ["server", "http1"] } | |
| hyper-util = { version = "0.1.8", features = ["tokio"] } | ||
| ignore = { version = "0.4.23" } | ||
| insta = { version = "1.40.0", features = ["json", "filters", "redactions"] } | ||
| p12 = { version = "0.6.3" } | ||
|
||
| predicates = { version = "3.1.2" } | ||
| rcgen = { version = "0.14.3" } | ||
| similar = { version = "2.6.0" } | ||
| temp-env = { version = "0.3.6" } | ||
| test-case = { version = "3.3.1" } | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.
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.
@zanieb I also don't think we need to change the windows version as part of this PR either. Everything should work fine if we keep the previous windows versions intact. That will minimize the changes to the lock file to be just isolated to rcgen.
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.
After f7e549d windows version is now the same as main. It also removed small unrelated changes to windows_exception in this PR as a result of the upgrade.
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.
Thanks!