21 lines
463 B
TOML
21 lines
463 B
TOML
name = "WebServer"
|
|
version = "0.1.0"
|
|
license = "license"
|
|
author = "Rasmus Rasmussen"
|
|
maintainer = "jane.doe@example.com"
|
|
copyright = "Copyright 2025, Rasmus Rasmussen"
|
|
[build]
|
|
auto-executables = true
|
|
auto-tests = true
|
|
auto-examples = true
|
|
module-naming = false
|
|
[install]
|
|
library = false
|
|
[fortran]
|
|
implicit-typing = false
|
|
implicit-external = false
|
|
source-form = "free"
|
|
[dependencies]
|
|
http = { git = "https://github.com/fortran-lang/http-client.git" }
|
|
stdlib = "*"
|