feat: strip for release builds

This commit is contained in:
rvcas 2022-09-29 23:36:57 -04:00 committed by Lucas
parent c5450d37d5
commit 55f906482a
1 changed files with 3 additions and 2 deletions

View File

@ -8,8 +8,6 @@ homepage = "https://github.com/txpipe/aiken"
license = "Apache-2.0" license = "Apache-2.0"
authors = ["Lucas Rosa <x@rvcas.dev>", "Kasey White <kwhitemsg@gmail.com>"] authors = ["Lucas Rosa <x@rvcas.dev>", "Kasey White <kwhitemsg@gmail.com>"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies] [dependencies]
anyhow = "1.0.57" anyhow = "1.0.57"
clap = { version = "3.1.14", features = ["derive"] } clap = { version = "3.1.14", features = ["derive"] }
@ -22,3 +20,6 @@ pallas-traverse = "0.14.0-alpha.3"
serde = { version = "1.0.144", features = ["derive"] } serde = { version = "1.0.144", features = ["derive"] }
serde_json = "1.0.85" serde_json = "1.0.85"
uplc = { path = '../uplc', version = "0.0.18" } uplc = { path = '../uplc', version = "0.0.18" }
[profile.release]
strip = true