TOML · 570 bytes Raw Blame History
1 name = "fortress"
2 version = "1.0.2"
3 license = "MIT"
4 author = "Matthew Wolffe"
5 maintainer = "mfwolffe@outlook.com"
6 copyright = "Copyright 2024, FORTRESS contributors"
7 description = "A command-line file explorer written in modern Fortran with fzf integration"
8 categories = ["file-manager", "terminal", "cli"]
9 keywords = ["file-explorer", "fzf", "terminal", "fortran"]
10
11 [build]
12 auto-executables = true
13 auto-tests = true
14 link = ["ncurses"]
15
16 [install]
17 library = false
18
19 [[executable]]
20 name = "fortress"
21 source-dir = "app"
22 main = "main.f90"
23
24 [dependencies]
25
26 [dev-dependencies]