-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
32 lines (26 loc) · 970 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[package]
name = "lv2"
version = "0.3.0"
authors = ["poidl <hoitaus@gmail.com>"]
description = "Minimal LV2 interface for Rust"
# These URLs point to more information about the repository.
documentation = "https://docs.rs/lv2/0.3.0/lv2/"
homepage = "https://github.com/poidl/lv2"
repository = "https://github.com/poidl/lv2"
# This points to a file in the repository (relative to this `Cargo.toml`). The
# contents of this file are stored and indexed in the registry.
readme = "README.md"
# This is a small list of keywords used to categorize and search for this
# package.
keywords = ["lv2"]
# This is a string description of the license for this package. Currently
# crates.io will validate the license provided against a whitelist of known
# license identifiers from http://spdx.org/licenses/. Multiple licenses can be
# separated with a `/`.
license = "ISC"
[dependencies]
libc = "0.2"
lv2_raw = "0.2.0"
[[example]]
name = "eg_amp_rust"
crate-type = ["cdylib"]