-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
43 lines (37 loc) · 1.16 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
[package]
name = "clickandmeow"
version = "1.0.0"
description = "A meow-mazing API wrapper for ClicEtMiam."
repository = "https://github.com/LiterateInk/ClickAndMeow"
authors = ["LiterateInk <[email protected]>"]
keywords = ["clicetmiam", "wrapper", "api"]
homepage = "https://docs.literate.ink/clickandmeow"
include = ["**/*.rs", "!src/bin/*.rs", "Cargo.toml"]
license = "GPL-3.0-or-later"
edition = "2021"
[lib]
crate-type = ["lib", "cdylib", "staticlib"]
name = "clickandmeow"
[features]
ffi = ["uniffi"]
[dependencies]
uniffi = { version = "0.28", git = "https://github.com/mozilla/uniffi-rs", features = [
"cli",
], optional = true }
anyhow = "1.0"
fetcher = { package = "literateink-fetcher", version = "0.1" }
thiserror = "2"
scraper = { version = "0.22.0", features = ["atomic"] }
[target.'cfg(target_arch = "wasm32")'.dependencies]
wasm-bindgen = "0.2"
js-sys = "0.3"
wasm-bindgen-futures = "0.4"
wasm = { package = "literateink-wasm", version = "0.1" }
mini-alloc = "0.7.0"
[build-dependencies]
uniffi = { version = "0.28", git = "https://github.com/mozilla/uniffi-rs", features = [
"build",
], optional = true }
[workspace]
resolver = "2"
members = ["examples/rust"]