[package] name = "fungible-token" version = "1.1.0" authors = ["Near Inc "] edition = "2021" repository = "https://github.com/INTEARnear/global-ft-contract" [lib] crate-type = ["cdylib"] [dependencies] near-sdk = "5.17.2" near-contract-standards = "5.17.2" [dev-dependencies] near-sdk = { version = "5.17.2", features = ["unit-testing"] } [package.metadata.near.reproducible_build] # docker image, descriptor of build environment image = "sourcescan/cargo-near:0.14.2-rust-1.86.0" # tag after colon above serves only descriptive purpose; image is identified by digest image_digest = "sha256:2320519772d04dd960c2c5c0172c0887ca4407e1c7c04e3be246b07cc5b21db0" # list of environment variables names, whose values, if set, will be used as external build parameters # in a reproducible manner # supported by `sourcescan/cargo-near:0.10.1-rust-1.82.0` image or later images passed_env = [] # build command inside of docker container # if docker image from default gallery is used https://hub.docker.com/r/sourcescan/cargo-near/tags, # the command may be any combination of flags of `cargo-near`, # supported by respective version of binary inside the container besides `--no-locked` flag container_build_command = [ "cargo", "near", "build", "non-reproducible-wasm", "--locked", ]