summaryrefslogtreecommitdiff
path: root/lib/bundler/templates/newgem/ext/newgem/Cargo.toml.tt
blob: 4b6e9587f7894310748bc75cd865dc7a0bbfd7ea (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.4" }