-
-
Notifications
You must be signed in to change notification settings - Fork 76
/
poac.toml
40 lines (36 loc) · 1.27 KB
/
poac.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[package]
authors = ["Ken Matsui <[email protected]>"]
description = "A package manager and build system for C++"
documentation = "https://poac.dev/docs"
edition = "20"
homepage = "https://poac.dev"
license = "Apache-2.0"
name = "poac"
readme = "README.md"
repository = "https://github.com/poac-dev/poac"
version = "0.10.1"
[dependencies]
toml11 = {git = "https://github.com/ToruNiina/toml11.git", tag = "v4.2.0"}
fmt = {version = ">=8.1.1 && <12", system = true}
libcurl = {version = ">=7.79.1 && <9", system = true}
libgit2 = {version = ">=1.1.0 && <1.9", system = true}
nlohmann_json = {version = "3.10.5", system = true}
tbb = {version = ">=2021.5.0 && <2023.0.0", system = true}
[profile]
cxxflags = ["-pedantic-errors", "-Wall", "-Wextra", "-Wpedantic"]
[profile.release]
lto = true
[lint.cpplint]
filters = [
"-build/c++11",
"-build/include_order", # prioritize clang-format
"-build/include_subdir",
"-legal/copyright",
"-readability/braces", # prioritize clang-format
"-readability/nolint", # handle NOLINT comments for clang-tidy
"-readability/todo",
"-runtime/indentation_namespace", # inner namespace should be indented
"-runtime/references", # non-const reference rather than a pointer
"-whitespace",
"+whitespace/ending_newline",
]