Delete double description field from Cargo.toml (#155)

This commit is contained in:
Mike Voronov 2021-10-15 12:19:33 +03:00 committed by GitHub
parent 582d07d2bb
commit e282a93ce7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 3 deletions

View File

@ -23,6 +23,6 @@ exclude = [
opt-level = 3
# since the interpreter in actively development stage, these settings are true at least for a while
debug = true
debug-assertions = true
overflow-checks = true
debug-assertions = false
panic = "unwind"

View File

@ -1,10 +1,9 @@
[package]
name = "air"
version = "0.15.0"
description = "Implementation of the AIR interpreter"
description = "Interpreter of AIR scripts intended to coordinate request flow in the Fluence network"
authors = ["Fluence Labs"]
edition = "2018"
description = "Interpreter of AIR scripts intended to coordinate request flow in the Fluence network"
repository = "https://github.com/fluencelabs/aquavm"
publish = false
keywords = ["fluence", "air", "webassembly", "programming-language"]