Skip to content
This repository was archived by the owner on Apr 28, 2025. It is now read-only.

Releases: aspect-build/rules_sol

v0.1.0

28 Feb 14:13
967fdde

Choose a tag to compare

v0.1.0 Pre-release
Pre-release

WORKSPACE snippet:

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "aspect_rules_sol",
    sha256 = "4e98a4572cd2c5f9e0a4118be3b8d2f0be148c80779ea9da646d0afabe2d609c",
    strip_prefix = "rules_sol-0.1.0",
    url = "https://github.com/aspect-build/rules_sol/releases/download/v0.1.0/rules_sol-v0.1.0.tar.gz",
)

######################
# rules_sol setup    #
######################
load("@aspect_rules_sol//sol:repositories.bzl", "LATEST_VERSION", "rules_sol_dependencies", "sol_register_toolchains")

# Fetches the rules_sol dependencies.
# If you want to have a different version of some dependency,
# you should fetch it *before* calling this.
# Alternatively, you can skip calling this function, so long as you've
# already fetched all the dependencies.
rules_sol_dependencies()

sol_register_toolchains(
    name = "solc",
    sol_version = LATEST_VERSION,
)

What's Changed

New Contributors

Full Changelog: https://github.com/aspect-build/rules_sol/commits/v0.1.0