ethereum / fe

Emerging smart contract language for the Ethereum blockchain.
https://fe-lang.org
Other
1.61k stars 187 forks source link

Build deps and project manifest #908

Closed g-r-a-n-t closed 1 year ago

g-r-a-n-t commented 1 year ago

What was wrong?

There is currently no way to include libraries other than the std lib in a Fe project.

example:

my_project
├── fe.toml
└── src
    └── main.fe
# fe.toml
name = "my_project"
version = "0.1.0"

[dependencies]
my_lib = "../my_lib"

To-Do