envd 1.0.1__tar.gz → 1.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of envd might be problematic. Click here for more details.

Files changed (263) hide show
  1. envd-1.1.0/.GIT_TAG_INFO +1 -0
  2. {envd-1.0.1 → envd-1.1.0}/CHANGELOG.md +49 -0
  3. {envd-1.0.1 → envd-1.1.0}/PKG-INFO +1 -1
  4. {envd-1.0.1 → envd-1.1.0}/envd/api/v1/install.py +15 -0
  5. {envd-1.0.1 → envd-1.1.0}/envd.egg-info/PKG-INFO +1 -1
  6. {envd-1.0.1 → envd-1.1.0}/envd.egg-info/SOURCES.txt +5 -2
  7. envd-1.1.0/go.mod +235 -0
  8. {envd-1.0.1 → envd-1.1.0}/go.sum +280 -236
  9. {envd-1.0.1 → envd-1.1.0}/pkg/app/app.go +1 -0
  10. {envd-1.0.1 → envd-1.1.0}/pkg/app/bootstrap.go +3 -0
  11. envd-1.1.0/pkg/app/new.go +160 -0
  12. envd-1.1.0/pkg/app/template/conda.envd +5 -0
  13. envd-1.1.0/pkg/app/template/torch.envd +35 -0
  14. envd-1.1.0/pkg/app/template/uv.envd +4 -0
  15. {envd-1.0.1 → envd-1.1.0}/pkg/builder/build.go +8 -1
  16. {envd-1.0.1 → envd-1.1.0}/pkg/driver/docker/docker.go +4 -2
  17. {envd-1.0.1 → envd-1.1.0}/pkg/driver/nerdctl/nerdctl.go +3 -3
  18. {envd-1.0.1 → envd-1.1.0}/pkg/lang/frontend/starlark/v1/install/const.go +1 -0
  19. {envd-1.0.1 → envd-1.1.0}/pkg/lang/frontend/starlark/v1/install/install.go +15 -0
  20. {envd-1.0.1 → envd-1.1.0}/pkg/lang/frontend/starlark/v1/interpreter.go +18 -4
  21. {envd-1.0.1 → envd-1.1.0}/pkg/lang/frontend/starlark/v1/interpreter_test.go +1 -1
  22. {envd-1.0.1 → envd-1.1.0}/pkg/lang/ir/types.go +4 -0
  23. {envd-1.0.1 → envd-1.1.0}/pkg/lang/ir/v1/compile.go +4 -0
  24. {envd-1.0.1 → envd-1.1.0}/pkg/lang/ir/v1/interface.go +8 -0
  25. {envd-1.0.1 → envd-1.1.0}/pkg/lang/ir/v1/system.go +4 -7
  26. {envd-1.0.1 → envd-1.1.0}/pkg/lang/ir/v1/types.go +1 -0
  27. {envd-1.0.1 → envd-1.1.0}/pkg/lang/ir/v1/util.go +0 -1
  28. envd-1.1.0/pkg/lang/ir/v1/uv.go +53 -0
  29. {envd-1.0.1 → envd-1.1.0}/pkg/metrics/docker_collector.go +1 -1
  30. {envd-1.0.1 → envd-1.1.0}/pkg/types/envd.go +4 -5
  31. {envd-1.0.1 → envd-1.1.0}/pkg/util/fileutil/file.go +10 -3
  32. envd-1.0.1/.GIT_TAG_INFO +0 -1
  33. envd-1.0.1/go.mod +0 -212
  34. envd-1.0.1/pkg/app/template/julia.envd +0 -11
  35. envd-1.0.1/pkg/app/template/r.envd +0 -14
  36. {envd-1.0.1 → envd-1.1.0}/.all-contributorsrc +0 -0
  37. {envd-1.0.1 → envd-1.1.0}/.editorconfig +0 -0
  38. {envd-1.0.1 → envd-1.1.0}/.gitignore +0 -0
  39. {envd-1.0.1 → envd-1.1.0}/.golangci.yml +0 -0
  40. {envd-1.0.1 → envd-1.1.0}/.goreleaser.yaml +0 -0
  41. {envd-1.0.1 → envd-1.1.0}/.lycheeignore +0 -0
  42. {envd-1.0.1 → envd-1.1.0}/.pre-commit-config.yaml +0 -0
  43. {envd-1.0.1 → envd-1.1.0}/.vscode/launch.json +0 -0
  44. {envd-1.0.1 → envd-1.1.0}/CODEOWNERS +0 -0
  45. {envd-1.0.1 → envd-1.1.0}/CODE_OF_CONDUCT.md +0 -0
  46. {envd-1.0.1 → envd-1.1.0}/LICENSE +0 -0
  47. {envd-1.0.1 → envd-1.1.0}/MANIFEST.in +0 -0
  48. {envd-1.0.1 → envd-1.1.0}/Makefile +0 -0
  49. {envd-1.0.1 → envd-1.1.0}/OWNERS +0 -0
  50. {envd-1.0.1 → envd-1.1.0}/README.md +0 -0
  51. {envd-1.0.1 → envd-1.1.0}/base-images/envd/build.sh +0 -0
  52. {envd-1.0.1 → envd-1.1.0}/base-images/envd/envd-daemonless.Dockerfile +0 -0
  53. {envd-1.0.1 → envd-1.1.0}/base-images/envd/envd.Dockerfile +0 -0
  54. {envd-1.0.1 → envd-1.1.0}/base-images/envd-sshd/envd-sshd.Dockerfile +0 -0
  55. {envd-1.0.1 → envd-1.1.0}/base-images/envd-starship/envd-starship.Dockerfile +0 -0
  56. {envd-1.0.1 → envd-1.1.0}/base-images/remote-cache/build-and-push-remote-cache.sh +0 -0
  57. {envd-1.0.1 → envd-1.1.0}/base-images/remote-cache/build.envd +0 -0
  58. {envd-1.0.1 → envd-1.1.0}/cmd/envd/main.go +0 -0
  59. {envd-1.0.1 → envd-1.1.0}/cmd/envd-sshd/main.go +0 -0
  60. {envd-1.0.1 → envd-1.1.0}/envd/api/v0/__init__.py +0 -0
  61. {envd-1.0.1 → envd-1.1.0}/envd/api/v0/config.py +0 -0
  62. {envd-1.0.1 → envd-1.1.0}/envd/api/v0/install.py +0 -0
  63. {envd-1.0.1 → envd-1.1.0}/envd/api/v0/io.py +0 -0
  64. {envd-1.0.1 → envd-1.1.0}/envd/api/v0/runtime.py +0 -0
  65. {envd-1.0.1 → envd-1.1.0}/envd/api/v1/__init__.py +0 -0
  66. {envd-1.0.1 → envd-1.1.0}/envd/api/v1/config.py +0 -0
  67. {envd-1.0.1 → envd-1.1.0}/envd/api/v1/io.py +0 -0
  68. {envd-1.0.1 → envd-1.1.0}/envd/api/v1/runtime.py +0 -0
  69. {envd-1.0.1 → envd-1.1.0}/envd/api.go +0 -0
  70. {envd-1.0.1 → envd-1.1.0}/envd.egg-info/dependency_links.txt +0 -0
  71. {envd-1.0.1 → envd-1.1.0}/envd.egg-info/not-zip-safe +0 -0
  72. {envd-1.0.1 → envd-1.1.0}/envd.egg-info/top_level.txt +0 -0
  73. {envd-1.0.1 → envd-1.1.0}/lychee.toml +0 -0
  74. {envd-1.0.1 → envd-1.1.0}/pkg/app/build/build.go +0 -0
  75. {envd-1.0.1 → envd-1.1.0}/pkg/app/build.go +0 -0
  76. {envd-1.0.1 → envd-1.1.0}/pkg/app/completion.go +0 -0
  77. {envd-1.0.1 → envd-1.1.0}/pkg/app/const.go +0 -0
  78. {envd-1.0.1 → envd-1.1.0}/pkg/app/context.go +0 -0
  79. {envd-1.0.1 → envd-1.1.0}/pkg/app/context_create.go +0 -0
  80. {envd-1.0.1 → envd-1.1.0}/pkg/app/context_ls.go +0 -0
  81. {envd-1.0.1 → envd-1.1.0}/pkg/app/context_rm.go +0 -0
  82. {envd-1.0.1 → envd-1.1.0}/pkg/app/context_use.go +0 -0
  83. {envd-1.0.1 → envd-1.1.0}/pkg/app/debug.go +0 -0
  84. {envd-1.0.1 → envd-1.1.0}/pkg/app/debug_llb.go +0 -0
  85. {envd-1.0.1 → envd-1.1.0}/pkg/app/destroy.go +0 -0
  86. {envd-1.0.1 → envd-1.1.0}/pkg/app/env.go +0 -0
  87. {envd-1.0.1 → envd-1.1.0}/pkg/app/env_describe.go +0 -0
  88. {envd-1.0.1 → envd-1.1.0}/pkg/app/env_ls.go +0 -0
  89. {envd-1.0.1 → envd-1.1.0}/pkg/app/exec.go +0 -0
  90. {envd-1.0.1 → envd-1.1.0}/pkg/app/formatter/data.go +0 -0
  91. {envd-1.0.1 → envd-1.1.0}/pkg/app/formatter/json/context.go +0 -0
  92. {envd-1.0.1 → envd-1.1.0}/pkg/app/formatter/json/env.go +0 -0
  93. {envd-1.0.1 → envd-1.1.0}/pkg/app/formatter/json/image.go +0 -0
  94. {envd-1.0.1 → envd-1.1.0}/pkg/app/formatter/json/print.go +0 -0
  95. {envd-1.0.1 → envd-1.1.0}/pkg/app/formatter/json/version.go +0 -0
  96. {envd-1.0.1 → envd-1.1.0}/pkg/app/formatter/table/context.go +0 -0
  97. {envd-1.0.1 → envd-1.1.0}/pkg/app/formatter/table/env.go +0 -0
  98. {envd-1.0.1 → envd-1.1.0}/pkg/app/formatter/table/image.go +0 -0
  99. {envd-1.0.1 → envd-1.1.0}/pkg/app/formatter/table/version.go +0 -0
  100. {envd-1.0.1 → envd-1.1.0}/pkg/app/image.go +0 -0
  101. {envd-1.0.1 → envd-1.1.0}/pkg/app/image_describe.go +0 -0
  102. {envd-1.0.1 → envd-1.1.0}/pkg/app/image_prune.go +0 -0
  103. {envd-1.0.1 → envd-1.1.0}/pkg/app/image_prune_test.go +0 -0
  104. {envd-1.0.1 → envd-1.1.0}/pkg/app/image_remove.go +0 -0
  105. {envd-1.0.1 → envd-1.1.0}/pkg/app/init.go +0 -0
  106. {envd-1.0.1 → envd-1.1.0}/pkg/app/interactive.go +0 -0
  107. {envd-1.0.1 → envd-1.1.0}/pkg/app/login.go +0 -0
  108. {envd-1.0.1 → envd-1.1.0}/pkg/app/pause.go +0 -0
  109. {envd-1.0.1 → envd-1.1.0}/pkg/app/prune.go +0 -0
  110. {envd-1.0.1 → envd-1.1.0}/pkg/app/reference.go +0 -0
  111. {envd-1.0.1 → envd-1.1.0}/pkg/app/resume.go +0 -0
  112. {envd-1.0.1 → envd-1.1.0}/pkg/app/run.go +0 -0
  113. {envd-1.0.1 → envd-1.1.0}/pkg/app/telemetry/reporter.go +0 -0
  114. {envd-1.0.1 → envd-1.1.0}/pkg/app/top.go +0 -0
  115. {envd-1.0.1 → envd-1.1.0}/pkg/app/up.go +0 -0
  116. {envd-1.0.1 → envd-1.1.0}/pkg/app/version.go +0 -0
  117. {envd-1.0.1 → envd-1.1.0}/pkg/autocomplete/bash.go +0 -0
  118. {envd-1.0.1 → envd-1.1.0}/pkg/autocomplete/fish.go +0 -0
  119. {envd-1.0.1 → envd-1.1.0}/pkg/autocomplete/zsh.go +0 -0
  120. {envd-1.0.1 → envd-1.1.0}/pkg/builder/build_func.go +0 -0
  121. {envd-1.0.1 → envd-1.1.0}/pkg/builder/builder.go +0 -0
  122. {envd-1.0.1 → envd-1.1.0}/pkg/builder/builder_suite_test.go +0 -0
  123. {envd-1.0.1 → envd-1.1.0}/pkg/builder/builder_test.go +0 -0
  124. {envd-1.0.1 → envd-1.1.0}/pkg/builder/dep_check.go +0 -0
  125. {envd-1.0.1 → envd-1.1.0}/pkg/builder/err.go +0 -0
  126. {envd-1.0.1 → envd-1.1.0}/pkg/builder/types.go +0 -0
  127. {envd-1.0.1 → envd-1.1.0}/pkg/builder/util.go +0 -0
  128. {envd-1.0.1 → envd-1.1.0}/pkg/builder/util_test.go +0 -0
  129. {envd-1.0.1 → envd-1.1.0}/pkg/buildkitd/buildkitd.go +0 -0
  130. {envd-1.0.1 → envd-1.1.0}/pkg/buildkitd/mock/mock.go +0 -0
  131. {envd-1.0.1 → envd-1.1.0}/pkg/buildkitd/print.go +0 -0
  132. {envd-1.0.1 → envd-1.1.0}/pkg/config/config.go +0 -0
  133. {envd-1.0.1 → envd-1.1.0}/pkg/data/datasource.go +0 -0
  134. {envd-1.0.1 → envd-1.1.0}/pkg/data/envd.go +0 -0
  135. {envd-1.0.1 → envd-1.1.0}/pkg/driver/client.go +0 -0
  136. {envd-1.0.1 → envd-1.1.0}/pkg/driver/docker/docker_suite_test.go +0 -0
  137. {envd-1.0.1 → envd-1.1.0}/pkg/driver/docker/docker_test.go +0 -0
  138. {envd-1.0.1 → envd-1.1.0}/pkg/driver/docker/label.go +0 -0
  139. {envd-1.0.1 → envd-1.1.0}/pkg/driver/nerdctl/buildkit.go +0 -0
  140. {envd-1.0.1 → envd-1.1.0}/pkg/driver/stats_type.go +0 -0
  141. {envd-1.0.1 → envd-1.1.0}/pkg/editor/vscode/types.go +0 -0
  142. {envd-1.0.1 → envd-1.1.0}/pkg/editor/vscode/util.go +0 -0
  143. {envd-1.0.1 → envd-1.1.0}/pkg/editor/vscode/vscode.go +0 -0
  144. {envd-1.0.1 → envd-1.1.0}/pkg/editor/vscode/vscode_suite_test.go +0 -0
  145. {envd-1.0.1 → envd-1.1.0}/pkg/editor/vscode/vscode_test.go +0 -0
  146. {envd-1.0.1 → envd-1.1.0}/pkg/envd/docker.go +0 -0
  147. {envd-1.0.1 → envd-1.1.0}/pkg/envd/docker_test.go +0 -0
  148. {envd-1.0.1 → envd-1.1.0}/pkg/envd/engine.go +0 -0
  149. {envd-1.0.1 → envd-1.1.0}/pkg/envd/envdserver.go +0 -0
  150. {envd-1.0.1 → envd-1.1.0}/pkg/envd/factory.go +0 -0
  151. {envd-1.0.1 → envd-1.1.0}/pkg/envd/types.go +0 -0
  152. {envd-1.0.1 → envd-1.1.0}/pkg/flag/consts.go +0 -0
  153. {envd-1.0.1 → envd-1.1.0}/pkg/home/auth.go +0 -0
  154. {envd-1.0.1 → envd-1.1.0}/pkg/home/auth_test.go +0 -0
  155. {envd-1.0.1 → envd-1.1.0}/pkg/home/cache.go +0 -0
  156. {envd-1.0.1 → envd-1.1.0}/pkg/home/config.go +0 -0
  157. {envd-1.0.1 → envd-1.1.0}/pkg/home/context.go +0 -0
  158. {envd-1.0.1 → envd-1.1.0}/pkg/home/context_test.go +0 -0
  159. {envd-1.0.1 → envd-1.1.0}/pkg/home/data.go +0 -0
  160. {envd-1.0.1 → envd-1.1.0}/pkg/home/home_suite_test.go +0 -0
  161. {envd-1.0.1 → envd-1.1.0}/pkg/home/manager.go +0 -0
  162. {envd-1.0.1 → envd-1.1.0}/pkg/home/manager_test.go +0 -0
  163. {envd-1.0.1 → envd-1.1.0}/pkg/lang/frontend/starlark/interpreter.go +0 -0
  164. {envd-1.0.1 → envd-1.1.0}/pkg/lang/frontend/starlark/mock/mock.go +0 -0
  165. {envd-1.0.1 → envd-1.1.0}/pkg/lang/frontend/starlark/v1/builtin/builtin.go +0 -0
  166. {envd-1.0.1 → envd-1.1.0}/pkg/lang/frontend/starlark/v1/config/config.go +0 -0
  167. {envd-1.0.1 → envd-1.1.0}/pkg/lang/frontend/starlark/v1/config/const.go +0 -0
  168. {envd-1.0.1 → envd-1.1.0}/pkg/lang/frontend/starlark/v1/data/const.go +0 -0
  169. {envd-1.0.1 → envd-1.1.0}/pkg/lang/frontend/starlark/v1/data/rule.go +0 -0
  170. {envd-1.0.1 → envd-1.1.0}/pkg/lang/frontend/starlark/v1/data/util.go +0 -0
  171. {envd-1.0.1 → envd-1.1.0}/pkg/lang/frontend/starlark/v1/io/const.go +0 -0
  172. {envd-1.0.1 → envd-1.1.0}/pkg/lang/frontend/starlark/v1/io/io.go +0 -0
  173. {envd-1.0.1 → envd-1.1.0}/pkg/lang/frontend/starlark/v1/runtime/const.go +0 -0
  174. {envd-1.0.1 → envd-1.1.0}/pkg/lang/frontend/starlark/v1/runtime/runtime.go +0 -0
  175. {envd-1.0.1 → envd-1.1.0}/pkg/lang/frontend/starlark/v1/starlark_suite_test.go +0 -0
  176. {envd-1.0.1 → envd-1.1.0}/pkg/lang/frontend/starlark/v1/testdata/test.envd +0 -0
  177. {envd-1.0.1 → envd-1.1.0}/pkg/lang/frontend/starlark/v1/universe/const.go +0 -0
  178. {envd-1.0.1 → envd-1.1.0}/pkg/lang/frontend/starlark/v1/universe/universe.go +0 -0
  179. {envd-1.0.1 → envd-1.1.0}/pkg/lang/ir/graph.go +0 -0
  180. {envd-1.0.1 → envd-1.1.0}/pkg/lang/ir/util.go +0 -0
  181. {envd-1.0.1 → envd-1.1.0}/pkg/lang/ir/v1/cache.go +0 -0
  182. {envd-1.0.1 → envd-1.1.0}/pkg/lang/ir/v1/checker.go +0 -0
  183. {envd-1.0.1 → envd-1.1.0}/pkg/lang/ir/v1/conda.go +0 -0
  184. {envd-1.0.1 → envd-1.1.0}/pkg/lang/ir/v1/consts.go +0 -0
  185. {envd-1.0.1 → envd-1.1.0}/pkg/lang/ir/v1/editor.go +0 -0
  186. {envd-1.0.1 → envd-1.1.0}/pkg/lang/ir/v1/editor_test.go +0 -0
  187. {envd-1.0.1 → envd-1.1.0}/pkg/lang/ir/v1/fs.go +0 -0
  188. {envd-1.0.1 → envd-1.1.0}/pkg/lang/ir/v1/get_conda.sh +0 -0
  189. {envd-1.0.1 → envd-1.1.0}/pkg/lang/ir/v1/git.go +0 -0
  190. {envd-1.0.1 → envd-1.1.0}/pkg/lang/ir/v1/install_conda.sh +0 -0
  191. {envd-1.0.1 → envd-1.1.0}/pkg/lang/ir/v1/julia.go +0 -0
  192. {envd-1.0.1 → envd-1.1.0}/pkg/lang/ir/v1/julia.sh +0 -0
  193. {envd-1.0.1 → envd-1.1.0}/pkg/lang/ir/v1/python.go +0 -0
  194. {envd-1.0.1 → envd-1.1.0}/pkg/lang/ir/v1/r.go +0 -0
  195. {envd-1.0.1 → envd-1.1.0}/pkg/lang/ir/v1/shell.go +0 -0
  196. {envd-1.0.1 → envd-1.1.0}/pkg/lang/ir/v1/supervisor.go +0 -0
  197. {envd-1.0.1 → envd-1.1.0}/pkg/lang/ir/v1/user.go +0 -0
  198. {envd-1.0.1 → envd-1.1.0}/pkg/lang/ir/v1/util_test.go +0 -0
  199. {envd-1.0.1 → envd-1.1.0}/pkg/lang/version/version.go +0 -0
  200. {envd-1.0.1 → envd-1.1.0}/pkg/metrics/collector.go +0 -0
  201. {envd-1.0.1 → envd-1.1.0}/pkg/metrics/helper.go +0 -0
  202. {envd-1.0.1 → envd-1.1.0}/pkg/metrics/model.go +0 -0
  203. {envd-1.0.1 → envd-1.1.0}/pkg/metrics/widget.go +0 -0
  204. {envd-1.0.1 → envd-1.1.0}/pkg/progress/compileui/display.go +0 -0
  205. {envd-1.0.1 → envd-1.1.0}/pkg/progress/compileui/mock/mock.go +0 -0
  206. {envd-1.0.1 → envd-1.1.0}/pkg/progress/compileui/term.go +0 -0
  207. {envd-1.0.1 → envd-1.1.0}/pkg/progress/compileui/term_windows.go +0 -0
  208. {envd-1.0.1 → envd-1.1.0}/pkg/progress/compileui/trace.go +0 -0
  209. {envd-1.0.1 → envd-1.1.0}/pkg/progress/compileui/types.go +0 -0
  210. {envd-1.0.1 → envd-1.1.0}/pkg/progress/mode/mode.go +0 -0
  211. {envd-1.0.1 → envd-1.1.0}/pkg/progress/progressui/display.go +0 -0
  212. {envd-1.0.1 → envd-1.1.0}/pkg/progress/progressui/display_test.go +0 -0
  213. {envd-1.0.1 → envd-1.1.0}/pkg/progress/progressui/printer.go +0 -0
  214. {envd-1.0.1 → envd-1.1.0}/pkg/progress/progressui/term.go +0 -0
  215. {envd-1.0.1 → envd-1.1.0}/pkg/progress/progressui/term_windows.go +0 -0
  216. {envd-1.0.1 → envd-1.1.0}/pkg/progress/progresswriter/printer.go +0 -0
  217. {envd-1.0.1 → envd-1.1.0}/pkg/progress/progresswriter/writer.go +0 -0
  218. {envd-1.0.1 → envd-1.1.0}/pkg/remote/sshd/os.go +0 -0
  219. {envd-1.0.1 → envd-1.1.0}/pkg/remote/sshd/sshd.go +0 -0
  220. {envd-1.0.1 → envd-1.1.0}/pkg/shell/install.sh +0 -0
  221. {envd-1.0.1 → envd-1.1.0}/pkg/shell/zsh.go +0 -0
  222. {envd-1.0.1 → envd-1.1.0}/pkg/shell/zsh_suite_test.go +0 -0
  223. {envd-1.0.1 → envd-1.1.0}/pkg/shell/zsh_test.go +0 -0
  224. {envd-1.0.1 → envd-1.1.0}/pkg/shell/zshrc +0 -0
  225. {envd-1.0.1 → envd-1.1.0}/pkg/ssh/config/entry.go +0 -0
  226. {envd-1.0.1 → envd-1.1.0}/pkg/ssh/config/key.go +0 -0
  227. {envd-1.0.1 → envd-1.1.0}/pkg/ssh/config/ssh_config.go +0 -0
  228. {envd-1.0.1 → envd-1.1.0}/pkg/ssh/config/ssh_config_suite_test.go +0 -0
  229. {envd-1.0.1 → envd-1.1.0}/pkg/ssh/config/ssh_config_test.go +0 -0
  230. {envd-1.0.1 → envd-1.1.0}/pkg/ssh/copy.go +0 -0
  231. {envd-1.0.1 → envd-1.1.0}/pkg/ssh/ssh.go +0 -0
  232. {envd-1.0.1 → envd-1.1.0}/pkg/syncthing/client.go +0 -0
  233. {envd-1.0.1 → envd-1.1.0}/pkg/syncthing/config.go +0 -0
  234. {envd-1.0.1 → envd-1.1.0}/pkg/syncthing/device.go +0 -0
  235. {envd-1.0.1 → envd-1.1.0}/pkg/syncthing/event.go +0 -0
  236. {envd-1.0.1 → envd-1.1.0}/pkg/syncthing/file.go +0 -0
  237. {envd-1.0.1 → envd-1.1.0}/pkg/syncthing/folder.go +0 -0
  238. {envd-1.0.1 → envd-1.1.0}/pkg/syncthing/install.go +0 -0
  239. {envd-1.0.1 → envd-1.1.0}/pkg/syncthing/syncthing.go +0 -0
  240. {envd-1.0.1 → envd-1.1.0}/pkg/syncthing/syncthing_test.go +0 -0
  241. {envd-1.0.1 → envd-1.1.0}/pkg/syncthing/util.go +0 -0
  242. {envd-1.0.1 → envd-1.1.0}/pkg/types/container.go +0 -0
  243. {envd-1.0.1 → envd-1.1.0}/pkg/types/label.go +0 -0
  244. {envd-1.0.1 → envd-1.1.0}/pkg/types/types_suite_test.go +0 -0
  245. {envd-1.0.1 → envd-1.1.0}/pkg/util/buildkitutil/buildkit.go +0 -0
  246. {envd-1.0.1 → envd-1.1.0}/pkg/util/buildkitutil/buildkit_test.go +0 -0
  247. {envd-1.0.1 → envd-1.1.0}/pkg/util/envutil/env.go +0 -0
  248. {envd-1.0.1 → envd-1.1.0}/pkg/util/envutil/env_test.go +0 -0
  249. {envd-1.0.1 → envd-1.1.0}/pkg/util/fileutil/file_test.go +0 -0
  250. {envd-1.0.1 → envd-1.1.0}/pkg/util/fileutil/namegenerator.go +0 -0
  251. {envd-1.0.1 → envd-1.1.0}/pkg/util/netutil/netutil.go +0 -0
  252. {envd-1.0.1 → envd-1.1.0}/pkg/util/netutil/netutil_test.go +0 -0
  253. {envd-1.0.1 → envd-1.1.0}/pkg/util/osutil/wsl.go +0 -0
  254. {envd-1.0.1 → envd-1.1.0}/pkg/util/runtimeutil/runtimeutil.go +0 -0
  255. {envd-1.0.1 → envd-1.1.0}/pkg/util/starlarkutil/stringslice.go +0 -0
  256. {envd-1.0.1 → envd-1.1.0}/pkg/util/starlarkutil/stringslice_test.go +0 -0
  257. {envd-1.0.1 → envd-1.1.0}/pkg/util/ziputil/unzip.go +0 -0
  258. {envd-1.0.1 → envd-1.1.0}/pkg/version/version.go +0 -0
  259. {envd-1.0.1 → envd-1.1.0}/pyproject.toml +0 -0
  260. {envd-1.0.1 → envd-1.1.0}/scripts/envd-daemonless.sh +0 -0
  261. {envd-1.0.1 → envd-1.1.0}/setup.cfg +0 -0
  262. {envd-1.0.1 → envd-1.1.0}/setup.py +0 -0
  263. {envd-1.0.1 → envd-1.1.0}/typos.toml +0 -0
@@ -0,0 +1 @@
1
+ v1.1.0
@@ -1,5 +1,54 @@
1
1
  # Changelog
2
2
 
3
+ ## v1.0.1 (2025-02-17)
4
+
5
+
6
+ ### Contributors
7
+
8
+
9
+ ## v1.0.0-alpha.3 (2025-02-11)
10
+
11
+ * [9065cd3](https://github.com/tensorchord/envd/commit/9065cd38a05d326f1cd48da9089117dd49bb28c7) fix: julia docs test (#1981)
12
+ * [63a0971](https://github.com/tensorchord/envd/commit/63a09712e9d3d2b698b2a2fd9a27617639f693a3) fix: use ubuntu 22.04 mirror (#1980)
13
+ * [37cb376](https://github.com/tensorchord/envd/commit/37cb376765bc0fda72d862f9285c1f68388d6e42) fix: use buildkit container builder to export cache (#1975)
14
+
15
+ ### Contributors
16
+
17
+ * Keming
18
+
19
+ ## v1.0.0-alpha.2 (2025-02-07)
20
+
21
+ * [2b3a8d1](https://github.com/tensorchord/envd/commit/2b3a8d184acaaf286c56ada79cd2e3c5bd646c6c) fix: goreleaser config, bump to v6 (#1973)
22
+
23
+ ### Contributors
24
+
25
+ * Keming
26
+
27
+ ## v1.0.0-alpha.1 (2025-02-07)
28
+
29
+
30
+ ### Contributors
31
+
32
+
33
+ ## v1.0.0 (2025-02-11)
34
+
35
+ * [9065cd3](https://github.com/tensorchord/envd/commit/9065cd38a05d326f1cd48da9089117dd49bb28c7) fix: julia docs test (#1981)
36
+ * [63a0971](https://github.com/tensorchord/envd/commit/63a09712e9d3d2b698b2a2fd9a27617639f693a3) fix: use ubuntu 22.04 mirror (#1980)
37
+ * [37cb376](https://github.com/tensorchord/envd/commit/37cb376765bc0fda72d862f9285c1f68388d6e42) fix: use buildkit container builder to export cache (#1975)
38
+ * [2b3a8d1](https://github.com/tensorchord/envd/commit/2b3a8d184acaaf286c56ada79cd2e3c5bd646c6c) fix: goreleaser config, bump to v6 (#1973)
39
+ * [6b49023](https://github.com/tensorchord/envd/commit/6b49023fcc98d3b426e10595c11610884739ae30) feat: upgrade to micromamba2 (#1971)
40
+ * [b53e06d](https://github.com/tensorchord/envd/commit/b53e06d4943c149594dfe1da52043febb51686c5) fix: envd cmd alias conflict, bump buildkit container version (#1970)
41
+ * [f747827](https://github.com/tensorchord/envd/commit/f74782795ed92c681516f1b25ec5b9ba5206e346) fix: r-lang in ubuntu:22.04 (#1967)
42
+ * [80d77e8](https://github.com/tensorchord/envd/commit/80d77e855203aecb34d0be0f0c9814c5636ab3ff) feat: upgrade julia to latest LTS version (#1966)
43
+ * [1519667](https://github.com/tensorchord/envd/commit/15196672f4a04417292a41edfd49cf364ca858de) feat: update examples to v1 syntax (#1965)
44
+ * [3bfd29a](https://github.com/tensorchord/envd/commit/3bfd29a18437b9cb7e6b47684be7a7d6da227202) feat: use moby context by default (#1964)
45
+ * [e32ab14](https://github.com/tensorchord/envd/commit/e32ab1455150bce2461168791a11ea416d33121f) feat: remove envd v0 (#1963)
46
+ * [307fdbd](https://github.com/tensorchord/envd/commit/307fdbda756887e2ba0acc09565965b4d7fe5865) fix: chown all the files for mamba under `/opt/conda` (#1961)
47
+
48
+ ### Contributors
49
+
50
+ * Keming
51
+
3
52
  ## v0.4.3 (2025-01-20)
4
53
 
5
54
  * [72e3b49](https://github.com/tensorchord/envd/commit/72e3b495ab776b5ba524217099ed7a2c88cbd909) fix(ci): release on ubuntu with wheels from previous steps (#1960)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: envd
3
- Version: 1.0.1
3
+ Version: 1.1.0
4
4
  Summary: A development environment management tool for data scientists.
5
5
  Home-page: https://github.com/tensorchord/envd
6
6
  Author: TensorChord
@@ -43,6 +43,21 @@ def conda(use_mamba: bool = False):
43
43
  """
44
44
 
45
45
 
46
+ def uv(python_version: str = "3.11"):
47
+ """Install UV (an extremely fast Python package and project manager).
48
+
49
+ `uv` is much faster than `conda`. Choose this one instead of `conda` if you don't
50
+ need any machine learning packages.
51
+
52
+ This doesn't support installing Python packages through `install.python_packages`
53
+ because that part should be managed by `uv`. You can run `uv sync` in the `envd`
54
+ environment to install all the dependencies.
55
+
56
+ Args:
57
+ python_version (str): install this Python version through UV
58
+ """
59
+
60
+
46
61
  def r_lang():
47
62
  """Install R Lang."""
48
63
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: envd
3
- Version: 1.0.1
3
+ Version: 1.1.0
4
4
  Summary: A development environment management tool for data scientists.
5
5
  Home-page: https://github.com/tensorchord/envd
6
6
  Author: TensorChord
@@ -71,6 +71,7 @@ pkg/app/image_remove.go
71
71
  pkg/app/init.go
72
72
  pkg/app/interactive.go
73
73
  pkg/app/login.go
74
+ pkg/app/new.go
74
75
  pkg/app/pause.go
75
76
  pkg/app/prune.go
76
77
  pkg/app/reference.go
@@ -91,8 +92,9 @@ pkg/app/formatter/table/env.go
91
92
  pkg/app/formatter/table/image.go
92
93
  pkg/app/formatter/table/version.go
93
94
  pkg/app/telemetry/reporter.go
94
- pkg/app/template/julia.envd
95
- pkg/app/template/r.envd
95
+ pkg/app/template/conda.envd
96
+ pkg/app/template/torch.envd
97
+ pkg/app/template/uv.envd
96
98
  pkg/autocomplete/bash.go
97
99
  pkg/autocomplete/fish.go
98
100
  pkg/autocomplete/zsh.go
@@ -188,6 +190,7 @@ pkg/lang/ir/v1/types.go
188
190
  pkg/lang/ir/v1/user.go
189
191
  pkg/lang/ir/v1/util.go
190
192
  pkg/lang/ir/v1/util_test.go
193
+ pkg/lang/ir/v1/uv.go
191
194
  pkg/lang/version/version.go
192
195
  pkg/metrics/collector.go
193
196
  pkg/metrics/docker_collector.go
envd-1.1.0/go.mod ADDED
@@ -0,0 +1,235 @@
1
+ module github.com/tensorchord/envd
2
+
3
+ go 1.23.0
4
+
5
+ toolchain go1.23.4
6
+
7
+ require (
8
+ github.com/Pallinder/go-randomdata v1.2.0
9
+ github.com/bcicen/ctop v0.7.7
10
+ github.com/charmbracelet/bubbletea v1.3.4
11
+ github.com/charmbracelet/lipgloss v1.0.0
12
+ github.com/cockroachdb/errors v1.11.3
13
+ github.com/containerd/console v1.0.4
14
+ github.com/containerd/log v0.1.0
15
+ github.com/containers/image/v5 v5.34.1
16
+ github.com/creack/pty v1.1.24
17
+ github.com/docker/cli v28.0.1+incompatible
18
+ github.com/docker/docker v28.0.1+incompatible
19
+ github.com/docker/go-connections v0.5.0
20
+ github.com/docker/go-units v0.5.0
21
+ github.com/gizak/termui/v3 v3.1.0
22
+ github.com/gliderlabs/ssh v0.3.8
23
+ github.com/go-git/go-git/v5 v5.14.0
24
+ github.com/golang/mock v1.6.0
25
+ github.com/google/uuid v1.6.0
26
+ github.com/hashicorp/go-getter v1.7.8
27
+ github.com/mattn/go-isatty v0.0.20
28
+ github.com/moby/buildkit v0.20.1
29
+ github.com/moby/term v0.5.2
30
+ github.com/morikuni/aec v1.0.0
31
+ github.com/olekukonko/tablewriter v0.0.5
32
+ github.com/onsi/ginkgo/v2 v2.22.2
33
+ github.com/onsi/gomega v1.36.2
34
+ github.com/opencontainers/go-digest v1.0.0
35
+ github.com/opencontainers/image-spec v1.1.1
36
+ github.com/pkg/errors v0.9.1
37
+ github.com/pkg/sftp v1.13.7
38
+ github.com/schollz/progressbar/v3 v3.18.0
39
+ github.com/segmentio/analytics-go/v3 v3.3.0
40
+ github.com/sirupsen/logrus v1.9.3
41
+ github.com/spf13/viper v1.19.0
42
+ github.com/stretchr/testify v1.10.0
43
+ github.com/syncthing/syncthing v1.29.2
44
+ github.com/tensorchord/envd-server v0.0.27
45
+ github.com/tonistiigi/units v0.0.0-20180711220420-6950e57a87ea
46
+ github.com/tonistiigi/vt100 v0.0.0-20240514184818-90bafcd6abab
47
+ github.com/urfave/cli/v2 v2.27.6
48
+ go.starlark.net v0.0.0-20250225190231-0d3f41d403af
49
+ golang.org/x/crypto v0.36.0
50
+ golang.org/x/sync v0.12.0
51
+ golang.org/x/term v0.30.0
52
+ golang.org/x/time v0.11.0
53
+ )
54
+
55
+ require (
56
+ cel.dev/expr v0.22.0 // indirect
57
+ cloud.google.com/go v0.118.3 // indirect
58
+ cloud.google.com/go/auth v0.15.0 // indirect
59
+ cloud.google.com/go/auth/oauth2adapt v0.2.7 // indirect
60
+ cloud.google.com/go/compute/metadata v0.6.0 // indirect
61
+ cloud.google.com/go/iam v1.4.1 // indirect
62
+ cloud.google.com/go/monitoring v1.24.0 // indirect
63
+ cloud.google.com/go/storage v1.50.0 // indirect
64
+ dario.cat/mergo v1.0.1 // indirect
65
+ github.com/AdaLogics/go-fuzz-headers v0.0.0-20240806141605-e8a1dd7889d6 // indirect
66
+ github.com/Azure/go-ansiterm v0.0.0-20250102033503-faa5f7b0171c // indirect
67
+ github.com/BurntSushi/toml v1.4.0 // indirect
68
+ github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.27.0 // indirect
69
+ github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric v0.51.0 // indirect
70
+ github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.51.0 // indirect
71
+ github.com/Microsoft/go-winio v0.6.2 // indirect
72
+ github.com/ProtonMail/go-crypto v1.1.6 // indirect
73
+ github.com/anmitsu/go-shlex v0.0.0-20200514113438-38f4b401e2be // indirect
74
+ github.com/aws/aws-sdk-go v1.55.6 // indirect
75
+ github.com/aymanbagabas/go-osc52/v2 v2.0.1 // indirect
76
+ github.com/beorn7/perks v1.0.1 // indirect
77
+ github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d // indirect
78
+ github.com/cespare/xxhash/v2 v2.3.0 // indirect
79
+ github.com/charmbracelet/x/ansi v0.8.0 // indirect
80
+ github.com/charmbracelet/x/term v0.2.1 // indirect
81
+ github.com/cloudflare/circl v1.6.0 // indirect
82
+ github.com/cncf/xds/go v0.0.0-20250121191232-2f005788dc42 // indirect
83
+ github.com/cockroachdb/logtags v0.0.0-20241215232642-bb51bb14a506 // indirect
84
+ github.com/cockroachdb/redact v1.1.6 // indirect
85
+ github.com/containerd/containerd/api v1.8.0 // indirect
86
+ github.com/containerd/containerd/v2 v2.0.3 // indirect
87
+ github.com/containerd/continuity v0.4.5 // indirect
88
+ github.com/containerd/errdefs v1.0.0 // indirect
89
+ github.com/containerd/errdefs/pkg v0.3.0 // indirect
90
+ github.com/containerd/platforms v1.0.0-rc.1 // indirect
91
+ github.com/containerd/ttrpc v1.2.7 // indirect
92
+ github.com/containerd/typeurl/v2 v2.2.3 // indirect
93
+ github.com/containers/libtrust v0.0.0-20230121012942-c1716e8a8d01 // indirect
94
+ github.com/containers/ocicrypt v1.2.1 // indirect
95
+ github.com/containers/storage v1.57.2 // indirect
96
+ github.com/cpuguy83/go-md2man/v2 v2.0.6 // indirect
97
+ github.com/cyphar/filepath-securejoin v0.4.1 // indirect
98
+ github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
99
+ github.com/distribution/reference v0.6.0 // indirect
100
+ github.com/docker/distribution v2.8.3+incompatible // indirect
101
+ github.com/docker/docker-credential-helpers v0.9.2 // indirect
102
+ github.com/ebitengine/purego v0.8.2 // indirect
103
+ github.com/emirpasic/gods v1.18.1 // indirect
104
+ github.com/envoyproxy/go-control-plane/envoy v1.32.4 // indirect
105
+ github.com/envoyproxy/protoc-gen-validate v1.2.1 // indirect
106
+ github.com/erikgeiser/coninput v0.0.0-20211004153227-1c3628e74d0f // indirect
107
+ github.com/felixge/httpsnoop v1.0.4 // indirect
108
+ github.com/fsnotify/fsnotify v1.8.0 // indirect
109
+ github.com/getsentry/sentry-go v0.31.1 // indirect
110
+ github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect
111
+ github.com/go-git/go-billy/v5 v5.6.2 // indirect
112
+ github.com/go-logr/logr v1.4.2 // indirect
113
+ github.com/go-logr/stdr v1.2.2 // indirect
114
+ github.com/go-ole/go-ole v1.3.0 // indirect
115
+ github.com/go-task/slim-sprig/v3 v3.0.0 // indirect
116
+ github.com/gofrs/flock v0.12.1 // indirect
117
+ github.com/gogo/protobuf v1.3.2 // indirect
118
+ github.com/golang/groupcache v0.0.0-20241129210726-2c02b8208cf8 // indirect
119
+ github.com/golang/protobuf v1.5.4 // indirect
120
+ github.com/golang/snappy v1.0.0 // indirect
121
+ github.com/google/go-cmp v0.7.0 // indirect
122
+ github.com/google/pprof v0.0.0-20241210010833-40e02aabc2ad // indirect
123
+ github.com/google/s2a-go v0.1.9 // indirect
124
+ github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect
125
+ github.com/googleapis/enterprise-certificate-proxy v0.3.5 // indirect
126
+ github.com/googleapis/gax-go/v2 v2.14.1 // indirect
127
+ github.com/gorilla/mux v1.8.1 // indirect
128
+ github.com/greatroar/blobloom v0.8.0 // indirect
129
+ github.com/grpc-ecosystem/grpc-gateway/v2 v2.26.3 // indirect
130
+ github.com/hashicorp/errwrap v1.1.0 // indirect
131
+ github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
132
+ github.com/hashicorp/go-multierror v1.1.1 // indirect
133
+ github.com/hashicorp/go-safetemp v1.0.0 // indirect
134
+ github.com/hashicorp/go-version v1.7.0 // indirect
135
+ github.com/hashicorp/golang-lru/v2 v2.0.7 // indirect
136
+ github.com/hashicorp/hcl v1.0.0 // indirect
137
+ github.com/in-toto/in-toto-golang v0.9.0 // indirect
138
+ github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
139
+ github.com/jmespath/go-jmespath v0.4.0 // indirect
140
+ github.com/kevinburke/ssh_config v1.2.0 // indirect
141
+ github.com/klauspost/compress v1.18.0 // indirect
142
+ github.com/kr/fs v0.1.0 // indirect
143
+ github.com/kr/pretty v0.3.1 // indirect
144
+ github.com/kr/text v0.2.0 // indirect
145
+ github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
146
+ github.com/lufia/plan9stats v0.0.0-20250303091104-876f3ea5145d // indirect
147
+ github.com/magiconair/properties v1.8.9 // indirect
148
+ github.com/mattn/go-localereader v0.0.1 // indirect
149
+ github.com/mattn/go-runewidth v0.0.16 // indirect
150
+ github.com/miscreant/miscreant.go v0.0.0-20200214223636-26d376326b75 // indirect
151
+ github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db // indirect
152
+ github.com/mitchellh/go-homedir v1.1.0 // indirect
153
+ github.com/mitchellh/go-testing-interface v1.14.1 // indirect
154
+ github.com/mitchellh/go-wordwrap v1.0.1 // indirect
155
+ github.com/mitchellh/mapstructure v1.5.0 // indirect
156
+ github.com/moby/docker-image-spec v1.3.1 // indirect
157
+ github.com/moby/locker v1.0.1 // indirect
158
+ github.com/moby/patternmatcher v0.6.0 // indirect
159
+ github.com/moby/sys/capability v0.4.0 // indirect
160
+ github.com/moby/sys/mountinfo v0.7.2 // indirect
161
+ github.com/moby/sys/signal v0.7.1 // indirect
162
+ github.com/moby/sys/user v0.3.0 // indirect
163
+ github.com/muesli/ansi v0.0.0-20230316100256-276c6243b2f6 // indirect
164
+ github.com/muesli/cancelreader v0.2.2 // indirect
165
+ github.com/muesli/termenv v0.16.0 // indirect
166
+ github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
167
+ github.com/nsf/termbox-go v1.1.1 // indirect
168
+ github.com/op/go-logging v0.0.0-20160315200505-970db520ece7 // indirect
169
+ github.com/opencontainers/runtime-spec v1.2.1 // indirect
170
+ github.com/pelletier/go-toml/v2 v2.2.3 // indirect
171
+ github.com/pierrec/lz4/v4 v4.1.22 // indirect
172
+ github.com/pjbgf/sha1cd v0.3.2 // indirect
173
+ github.com/planetscale/vtprotobuf v0.6.1-0.20240319094008-0393e58bdf10 // indirect
174
+ github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
175
+ github.com/power-devops/perfstat v0.0.0-20240221224432-82ca36839d55 // indirect
176
+ github.com/prometheus/client_golang v1.21.1 // indirect
177
+ github.com/prometheus/client_model v0.6.1 // indirect
178
+ github.com/prometheus/common v0.62.0 // indirect
179
+ github.com/prometheus/procfs v0.15.1 // indirect
180
+ github.com/rivo/uniseg v0.4.7 // indirect
181
+ github.com/rogpeppe/go-internal v1.14.1 // indirect
182
+ github.com/russross/blackfriday/v2 v2.1.0 // indirect
183
+ github.com/sagikazarmark/locafero v0.7.0 // indirect
184
+ github.com/sagikazarmark/slog-shim v0.1.0 // indirect
185
+ github.com/secure-systems-lab/go-securesystemslib v0.9.0 // indirect
186
+ github.com/segmentio/backo-go v1.1.0 // indirect
187
+ github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3 // indirect
188
+ github.com/shibumi/go-pathspec v1.3.0 // indirect
189
+ github.com/shirou/gopsutil/v4 v4.25.2 // indirect
190
+ github.com/skeema/knownhosts v1.3.1 // indirect
191
+ github.com/sourcegraph/conc v0.3.0 // indirect
192
+ github.com/spf13/afero v1.12.0 // indirect
193
+ github.com/spf13/cast v1.7.1 // indirect
194
+ github.com/spf13/pflag v1.0.6 // indirect
195
+ github.com/subosito/gotenv v1.6.0 // indirect
196
+ github.com/syncthing/notify v0.0.0-20250207082249-f0fa8f99c2bc // indirect
197
+ github.com/syndtr/goleveldb v1.0.1-0.20220721030215-126854af5e6d // indirect
198
+ github.com/thejerf/suture/v4 v4.0.6 // indirect
199
+ github.com/tklauser/go-sysconf v0.3.15 // indirect
200
+ github.com/tklauser/numcpus v0.10.0 // indirect
201
+ github.com/tonistiigi/fsutil v0.0.0-20250227023350-13604323a291 // indirect
202
+ github.com/tonistiigi/go-csvvalue v0.0.0-20240814133006-030d3b2625d0 // indirect
203
+ github.com/ulikunitz/xz v0.5.12 // indirect
204
+ github.com/xanzy/ssh-agent v0.3.3 // indirect
205
+ github.com/xrash/smetrics v0.0.0-20240521201337-686a1a2994c1 // indirect
206
+ github.com/yusufpapurcu/wmi v1.2.4 // indirect
207
+ go.opentelemetry.io/auto/sdk v1.1.0 // indirect
208
+ go.opentelemetry.io/contrib/detectors/gcp v1.35.0 // indirect
209
+ go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.60.0 // indirect
210
+ go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.60.0 // indirect
211
+ go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.60.0 // indirect
212
+ go.opentelemetry.io/otel v1.35.0 // indirect
213
+ go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.35.0 // indirect
214
+ go.opentelemetry.io/otel/metric v1.35.0 // indirect
215
+ go.opentelemetry.io/otel/sdk v1.35.0 // indirect
216
+ go.opentelemetry.io/otel/sdk/metric v1.35.0 // indirect
217
+ go.opentelemetry.io/otel/trace v1.35.0 // indirect
218
+ go.opentelemetry.io/proto/otlp v1.5.0 // indirect
219
+ go.uber.org/multierr v1.11.0 // indirect
220
+ golang.org/x/exp v0.0.0-20250305212735-054e65f0b394 // indirect
221
+ golang.org/x/net v0.37.0 // indirect
222
+ golang.org/x/oauth2 v0.28.0 // indirect
223
+ golang.org/x/sys v0.31.0 // indirect
224
+ golang.org/x/text v0.23.0 // indirect
225
+ golang.org/x/tools v0.31.0 // indirect
226
+ google.golang.org/api v0.224.0 // indirect
227
+ google.golang.org/genproto v0.0.0-20250303144028-a0af3efb3deb // indirect
228
+ google.golang.org/genproto/googleapis/api v0.0.0-20250303144028-a0af3efb3deb // indirect
229
+ google.golang.org/genproto/googleapis/rpc v0.0.0-20250303144028-a0af3efb3deb // indirect
230
+ google.golang.org/grpc v1.71.0 // indirect
231
+ google.golang.org/protobuf v1.36.5 // indirect
232
+ gopkg.in/ini.v1 v1.67.0 // indirect
233
+ gopkg.in/warnings.v0 v0.1.2 // indirect
234
+ gopkg.in/yaml.v3 v3.0.1 // indirect
235
+ )