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 opt-level = 3
# since the interpreter in actively development stage, these settings are true at least for a while # since the interpreter in actively development stage, these settings are true at least for a while
debug = true debug = true
debug-assertions = true
overflow-checks = true overflow-checks = true
debug-assertions = false
panic = "unwind" panic = "unwind"

View File

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