aboutsummaryrefslogtreecommitdiff
path: root/build.rs
diff options
context:
space:
mode:
authorFuwn <[email protected]>2022-03-17 02:22:29 -0700
committerFuwn <[email protected]>2022-03-17 02:22:29 -0700
commit421e019fe7049f3ef7dd28b1387b21413ba57a51 (patch)
treeb6051cffec0277df588dabb87c92fb10de3c8902 /build.rs
parentdocs(license): add for vergen (diff)
downloadcli-421e019fe7049f3ef7dd28b1387b21413ba57a51.tar.xz
cli-421e019fe7049f3ef7dd28b1387b21413ba57a51.zip
feat: 0.1.0 :star:
Diffstat (limited to 'build.rs')
-rw-r--r--build.rs19
1 files changed, 19 insertions, 0 deletions
diff --git a/build.rs b/build.rs
new file mode 100644
index 0000000..5512a66
--- /dev/null
+++ b/build.rs
@@ -0,0 +1,19 @@
+// This file is part of senpy-cli <https://github.com/senpy-club/cli>.
+// Copyright (C) 2022-2022 Fuwn <[email protected]>
+//
+// This program is free software: you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation, version 3.
+//
+// This program is distributed in the hope that it will be useful, but
+// WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+// General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program. If not, see <http://www.gnu.org/licenses/>.
+//
+// Copyright (C) 2022-2022 Fuwn <[email protected]>
+// SPDX-License-Identifier: GPL-3.0-only
+
+fn main() -> anyhow::Result<()> { vergen::vergen(vergen::Config::default()) }