Skip to content

Commit

Permalink
Merge pull request #6 from Y-Nak/release
Browse files Browse the repository at this point in the history
Prepare for release
  • Loading branch information
Y-Nak authored Nov 7, 2022
2 parents f1598be + 71d26db commit df7149e
Show file tree
Hide file tree
Showing 7 changed files with 58 additions and 13 deletions.
15 changes: 12 additions & 3 deletions crates/codegen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,16 @@
[package]
name = "sonatina-codegen"
version = "0.1.0"
version = "0.0.1-alpha"
edition = "2021"
authors = ["Sonatina Developers"]
license = "Apache-2.0"
readme = "../../README.md"
homepage = "https://github.com/fe-lang/sonatina/tree/main/crates/codegen"
repository = "https://github.com/fe-lang/sonatina"
description = "High-performance code generator for smart contract"
categories = ["compilers", "wasm"]
keywords = ["compiler", "evm", "wasm", "smart-contract"]


# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand All @@ -10,5 +19,5 @@ primitive-types = "0.10"
cranelift-entity = "0.77"
smallvec = "1.7.0"
fxhash = "0.2.1"
sonatina-ir = { path = "../ir" }
sonatina-triple = { path = "../triple" }
sonatina-ir = { path = "../ir", version = "0.0.1-alpha" }
sonatina-triple = { path = "../triple", version = "0.0.1-alpha" }
5 changes: 4 additions & 1 deletion crates/filecheck/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
[package]
name = "sonatina-filecheck"
version = "0.1.0"
version = "0.0.1-alpha"
edition = "2021"
authors = ["Sonatina Developers"]
license = "Apache-2.0"
publish = false

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
12 changes: 10 additions & 2 deletions crates/ir/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
[package]
name = "sonatina-ir"
version = "0.1.0"
version = "0.0.1-alpha"
edition = "2021"
authors = ["Sonatina Developers"]
license = "Apache-2.0"
readme = "../../README.md"
homepage = "https://github.com/fe-lang/sonatina/tree/main/crates/ir"
repository = "https://github.com/fe-lang/sonatina"
description = "Intermediate representation for sonatina code generator"
categories = ["compilers", "wasm"]
keywords = ["compiler", "evm", "wasm", "smart-contract"]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand All @@ -11,5 +19,5 @@ cranelift-entity = "0.77"
smallvec = "1.7.0"
fxhash = "0.2.1"
dyn-clone = "1.0.4"
sonatina-triple = { path = "../triple" }
sonatina-triple = { path = "../triple", version = "0.0.1-alpha" }
indexmap = "1.9.1"
10 changes: 9 additions & 1 deletion crates/object/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
[package]
name = "sonatina-object"
version = "0.1.0"
version = "0.0.1-alpha"
edition = "2021"
authors = ["Sonatina Developers"]
license = "Apache-2.0"
readme = "../../README.md"
homepage = "https://github.com/fe-lang/sonatina/tree/main/crates/object"
repository = "https://github.com/fe-lang/sonatina"
description = "Object file for sonatina code generator"
categories = ["compilers", "wasm"]
keywords = ["compiler", "evm", "wasm", "smart-contract"]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
16 changes: 12 additions & 4 deletions crates/parser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,20 @@
[package]
name = "sonatina-parser"
version = "0.1.0"
version = "0.0.1-alpha"
edition = "2021"
authors = ["Sonatina Developers"]
license = "Apache-2.0"
readme = "../../README.md"
homepage = "https://github.com/fe-lang/sonatina/tree/main/crates/parser"
repository = "https://github.com/fe-lang/sonatina"
description = "Parser for sonatina-ir text format"
categories = ["compilers", "parser", "wasm"]
keywords = ["compiler", "evm", "wasm", "smart-contract"]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
sonatina-ir = { path = "../ir" }
sonatina-triple = { path = "../triple" }
sonatina-ir = { path = "../ir", version = "0.0.1-alpha" }
sonatina-triple = { path = "../triple", version = "0.0.1-alpha" }
smallvec = "1.7.0"
cranelift-entity = "0.77"
cranelift-entity = "0.77"
12 changes: 10 additions & 2 deletions crates/triple/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,16 @@
[package]
name = "sonatina-triple"
version = "0.1.0"
version = "0.0.1-alpha"
edition = "2021"
authors = ["Sonatina Developers"]
license = "Apache-2.0"
readme = "../../README.md"
homepage = "https://github.com/fe-lang/sonatina/tree/main/crates/triple"
repository = "https://github.com/fe-lang/sonatina"
description = "Target triple for smart contract"
categories = ["compilers", "wasm"]
keywords = ["compiler", "evm", "wasm", "smart-contract"]


[dependencies]
thiserror = "1.0"
thiserror = "1.0"
1 change: 1 addition & 0 deletions release.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
allow-branch = ["main"]

0 comments on commit df7149e

Please sign in to comment.