Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

README.md

Package Manager Example

This example demonstrates the structured layout of a package.toml configuration to manage third-party library dependencies and metadata in TechScript.

Code (package.toml)

[package]
name = "math_demo"
version = "1.0.0"
authors = ["Tanmoy Majumder <[email protected]>"]
description = "A math library demo package"

[dependencies]
http_helper = "1.2.0"

Initializing dependencies

tech package install

This fetches the required dependencies matching the semver specifications and stores them in the local package compiler cache directory.