1
0
mirror of https://github.com/vbrandl/bind9-api.git synced 2024-11-21 21:53:34 +01:00

Enable LTO

This commit is contained in:
Valentin Brandl 2018-07-08 12:01:11 +02:00
parent 4aa4eef9cb
commit 6c3aafbe24
Signed by: vbrandl
GPG Key ID: CAD4DA1A789125F9
5 changed files with 8 additions and 0 deletions

View File

@ -1,3 +1,6 @@
[workspace] [workspace]
members = [ "server", "client", "data", "crypto" ] members = [ "server", "client", "data", "crypto" ]
[profile.release]
lto = true

View File

@ -2,6 +2,8 @@
name = "bind9-api-client" name = "bind9-api-client"
version = "0.1.0" version = "0.1.0"
authors = ["Valentin Brandl <vbrandl@riseup.net>"] authors = ["Valentin Brandl <vbrandl@riseup.net>"]
description = "Client for the BIND9 API"
license = "MIT/Apache-2.0"
[dependencies] [dependencies]
clap = "2.32.0" clap = "2.32.0"

View File

@ -2,6 +2,7 @@
name = "crypto" name = "crypto"
version = "0.1.0" version = "0.1.0"
authors = ["Valentin Brandl <vbrandl@riseup.net>"] authors = ["Valentin Brandl <vbrandl@riseup.net>"]
license = "MIT/Apache-2.0"
[dependencies] [dependencies]
failure = "0.1.1" failure = "0.1.1"

View File

@ -2,6 +2,7 @@
name = "data" name = "data"
version = "0.1.0" version = "0.1.0"
authors = ["Valentin Brandl <vbrandl@riseup.net>"] authors = ["Valentin Brandl <vbrandl@riseup.net>"]
license = "MIT/Apache-2.0"
[dependencies] [dependencies]
failure = "0.1.1" failure = "0.1.1"

View File

@ -3,6 +3,7 @@ name = "bind9-api"
version = "0.1.0" version = "0.1.0"
authors = ["Valentin Brandl <vbrandl@riseup.net>"] authors = ["Valentin Brandl <vbrandl@riseup.net>"]
description = "Web API to create, update and remove DNS entries in bind9" description = "Web API to create, update and remove DNS entries in bind9"
license = "MIT/Apache-2.0"
[dependencies] [dependencies]
actix-web = "0.6.14" actix-web = "0.6.14"