Skip to content

Modules & packages

Inko projects are organised using "modules". A module is just an Inko source file you can import into another file using the import keyword. For example:

import std::stdio

This imports the module std::stdio and exposes it using the name stdio. You an also import specific symbols, such as types:

import std::stdio::STDOUT

For more information about the syntax of import statements, refer to the Imports syntax documentation.

Import paths

When importing modules, the compiler looks in the following places to find the module:

  1. The standard library
  2. Your project's src/ directory (see Project structure)
  3. Your project's dep/ directory

If a module isn't found, a compile-time error is produced.

Inko doesn't supporting importing modules relative to another module.

Third-party dependencies

Inko supports adding third-party dependencies using its package manager "ipm". Packages are just Git repositories hosted on a platform such as GitLab or GitHub. There's no central package registry.

Manifest format

The dependencies for your project are listed in the file inko.pkg (called a "package manifest") in the root directory of your project. The format of this file is a simple line based format that looks as follows:

# This is a comment
require gitlab.com/bob/http 1.0.1 ece1027ada626bddd1efc74ba88a87dbdc19522c
require github.com/alice/json 1.0.0 f3f378ad8ea4b617401b40ace743614995904755

Each line is either a comment (when it starts with a #), or a command. The only command supported for now is require, which uses the following syntax:

require URL VERSION CHECKSUM

URL is the URL of the Git repository of the dependency. You can use any URL supported by Git, including local file paths.

VERSION is the version of the package in the format MAJOR.MINOR.PATCH.

CHECKSUM is the SHA1 checksum of the Git commit the version points to. This value is used to ensure that package contents aren't changed after the package is published.

Version selection

ipm uses semantic versioning for its versions, and minimal version selection for version selection.

Minimal version selection means that you list the minimum version of a package that you need. If multiple packages depend on different versions of the same package, ipm picks the most recent requirement from that list. Take these requirements for example:

json >= 1.2.3
json >= 1.5.3
json >= 1.8.2

Here the most recent version that satisfies all requirements is 1.8.2, so ipm will pick that version of the "json" package.

If packages require different major versions of another package, ipm produces an error as we don't support using multiple major versions of the same package.

Using minimal version selection offers several benefits:

  • The implementation is much simpler compared to SAT solvers used for other version selecting techniques. Because of this the implementation is also much faster.
  • You don't need a lock file of sorts that lists all the exact packages and versions to use.
  • You won't end up using a version of a package that you never tested your code against.

For more details we suggest reading through the article by Russ Cox.

Handling security updates

If a new version of a package is released, ipm ignores it due to the use of minimal version selection; instead picking the most recent version from the list of required versions. At first glance this may seem like a bad idea, as you won't be able to take advantage of security updates of your dependencies. There's a simple solution to this problem: add the dependency to your inko.pkg with the appropriate minimum version, and ipm takes care of the rest.

Using ipm

For a more in-depth overview of the available commands and flags, run ipm --help. This also works for the various sub-commands, such as ipm sync --help.

When installing Inko using ivm, ipm is already installed. When using a package provided by your system's package manager, ipm should also be installed, though on some platforms you may need to install ipm separately. If you're not sure, we recommend using ivm to install Inko and its package manager.

Setting up

Creating an empty inko.pkg is done using the ipm init command.

Adding dependencies

Adding a package is done using ipm add, which takes the package URL and version to add. For example:

ipm add gitlab.com/inko-lang/example-package 1.2.3

This command only adds the package to your inko.pkg file, it doesn't install it into your project.

Removing dependencies

The inverse of ipm add is the ipm remove command, which takes a package URL and removes it from your inko.pkg. For example:

ipm remove gitlab.com/inko-lang/example-package

Installing dependencies

Warning

The ipm sync command removes all files in the dep directory before installing the dependencis, so make sure to not place files not managed by ipm in this directory.

Installing dependencies into your project is done using ipm sync. This command downloads all the necessary dependencies, selects the appropriate versions, then installs them in ./dep. For example:

$ ipm sync
Updating package cache
  Downloading /home/yorickpeterse/Projects/inko/ipm-test/http 1.0.1
  Downloading /home/yorickpeterse/Projects/inko/ipm-test/json 1.0.0
  Downloading /home/yorickpeterse/Projects/inko/ipm-test/test-package-with-dependency/ 0.5.2
  Downloading /home/yorickpeterse/Projects/inko/ipm-test/test-package 1.1.1
Removing existing ./dep
Installing
  /home/yorickpeterse/Projects/inko/ipm-test/json 1.0.0
  /home/yorickpeterse/Projects/inko/ipm-test/http 1.0.1
  /home/yorickpeterse/Projects/inko/ipm-test/test-package 1.1.1
  /home/yorickpeterse/Projects/inko/ipm-test/test-package-with-dependency/ 0.5.2

Once installed you can import the dependencies using the import statement.

The dep directory shouldn't be tracked by Git, so make sure to add it to your .gitignore file like so:

/dep

Updating dependencies

Updating dependencies to their latest version is done using the ipm update command. This command either takes a package URL and only updates that package, or updates all packages if no URL is specified.

By default this command only updates versions to the latest version using the same major version. For example, if you depend on "json" version 1.2.3, and 1.2.5 is released, ipm update updates the required version to 1.2.5. When version 2.0.0 is released, ipm update ignores it because this version isn't backwards compatible with version 1. To update across major versions, use the following:

ipm update --major

Note that if other packages depend on the previous major version of the package you're updating, you won't be able to update your dep directory using ipm sync.