-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
48 lines (43 loc) · 1.22 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
44
45
46
47
48
# Daku
# Copyright © 2022 Jeron Aldaron Lau.
#
# Licensed under any of:
# - Apache License, Version 2.0 (https://www.apache.org/licenses/LICENSE-2.0)
# - Boost Software License, Version 1.0 (https://www.boost.org/LICENSE_1_0.txt)
# - MIT License (https://mit-license.org/)
# At your choosing (See accompanying files LICENSE_APACHE_2_0.txt,
# LICENSE_MIT.txt and LICENSE_BOOST_1_0.txt).
[workspace]
default-members = ["."]
members = [".", "cargo-daku"]
[package]
name = "daku"
version = "0.5.0"
license = "Apache-2.0 OR BSL-1.0 OR MIT"
description = "Interface to the Daku API"
repository = "https://github.com/ardaku/daku"
documentation = "https://docs.rs/daku"
homepage = "https://github.com/ardaku/daku/blob/v1/CHANGELOG.md"
include = ["Cargo.toml", "README.md", "src/*"]
categories = [
"api-bindings",
"asynchronous",
"hardware-support",
"os",
"wasm",
]
keywords = ["daku", "webassembly", "ardaku", "quantii", "system"]
readme = "README.md"
edition = "2021"
[dependencies.log]
version = "0.4"
optional = true
default-features = false
[features]
log = ["dep:log"]
prompt = []
[package.metadata.docs.rs]
all-features = true
default-target = "wasm32-unknown-unknown"
targets = []
rustdoc-args = ["--cfg", 'target_os="daku"']