25 lines
461 B
TOML
25 lines
461 B
TOML
|
[package]
|
||
|
name = "purple-plugin-delta"
|
||
|
version = "0.1.0"
|
||
|
authors = ["Nick Thomas <delta@ur.gs>"]
|
||
|
|
||
|
[lib]
|
||
|
name = "delta"
|
||
|
path = "src/delta.rs"
|
||
|
crate-type = ["dylib"]
|
||
|
|
||
|
[dependencies]
|
||
|
libc = "*"
|
||
|
glib-sys = "*"
|
||
|
purple-sys = { git = "https://github.com/lupine/libpurple-rust", branch="with-flared" }
|
||
|
deltachat = { git = "https://github.com/deltachat/deltachat-core-rust", tag="v1.51.0" }
|
||
|
lazy_static = "1.4.0"
|
||
|
|
||
|
[profile.dev]
|
||
|
debug = 0
|
||
|
|
||
|
[profile.release]
|
||
|
lto = true
|
||
|
|
||
|
|