summaryrefslogtreecommitdiff
path: root/lib/bundler/templates/newgem/ext/newgem/Cargo.toml.tt
blob: 0ebce0e4a0c6e70a705a122a87503e5e72010213 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
[package]
name = <%= config[:name].inspect %>
version = "0.1.0"
edition = "2021"
authors = ["<%= config[:author] %> <<%= config[:email] %>>"]
<%- if config[:mit] -%>
license = "MIT"
<%- end -%>
publish = false

[lib]
crate-type = ["cdylib"]

[dependencies]
magnus = { version = "0.6.2" }