helix/Cargo.toml

35 lines
1.0 KiB
TOML
Raw Normal View History

2016-04-09 01:27:05 +00:00
[package]
2017-04-24 16:31:18 +00:00
name = "helix"
2018-06-04 20:15:00 +00:00
version = "0.7.5"
2016-04-09 01:27:05 +00:00
authors = ["Godhuda <engineering+godhuda@tilde.io>"]
2017-04-17 21:54:30 +00:00
description = "Embed Rust in your Ruby"
2017-04-26 15:19:33 +00:00
documentation = "https://usehelix.com/documentation"
homepage = "https://usehelix.com"
repository = "https://github.com/tildeio/helix"
readme = "README.md"
keywords = ["ruby", "rails", "binding", "extension", "embed"]
categories = ["api-bindings"]
license = "ISC"
2017-03-07 05:37:08 +00:00
include = [
"src/**/*.rs",
"Cargo.toml"
]
2016-04-09 01:27:05 +00:00
2017-04-26 15:19:33 +00:00
[badges]
travis-ci = { repository = "tildeio/helix", branch = "master" }
appveyor = { repository = "tildeio/helix", branch = "master", service = "github" }
2017-02-18 02:58:21 +00:00
[workspace]
2018-06-16 03:48:29 +00:00
members = ["examples/calculator", "examples/console", "examples/docopt", "examples/duration", "examples/game_of_life", "examples/geometry", "examples/json_builder", "examples/membership", "examples/text_transform", "examples/turbo_blank", "examples/unit"]
2017-02-18 02:58:21 +00:00
2016-04-09 01:27:05 +00:00
[dependencies]
libc = "0.2.0"
2016-04-09 01:27:05 +00:00
[dependencies.libcruby-sys]
path = "crates/libcruby-sys"
2018-06-04 20:15:00 +00:00
version = "0.7.5"
[dependencies.cstr-macro]
path = "crates/cstr-macro"
2017-04-17 21:53:59 +00:00
version = "0.1.0"