This repository was archived by the owner on Jun 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
66 lines (57 loc) · 1.48 KB
/
Cargo.toml
File metadata and controls
66 lines (57 loc) · 1.48 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[package]
name = "codectrl"
version = "1.0.0-beta"
edition = "2021"
authors = [
"Authentura <contact@authentura.com>",
"Samuel Boyden <s.boyden@authentura.com>",
]
description = "A dynamic source code analysis tool, made by Authentura."
license = "MIT"
rust-version = "1.62.0"
readme = "README.md"
homepage = "https://codectrl.authentura.com"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
codectrl-gui = { path = "./codectrl-gui" }
[lib]
crate-type = ["cdylib", "rlib"]
[target.'cfg(target_arch = "wasm32")'.dependencies]
eframe = "0.20"
wasm-rs-async-executor = { version = "0.9.0", features = ["cooperative"] }
wasm-bindgen-futures = "0.4"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
dotenv = "0.15.0"
env_logger = "0.9.0"
log = "0.4.17"
[package.metadata.deb]
name = "codectrl"
maintainer = "Samuel Boyden <s.boyden@authentura.com>"
copyright = "2022, Authentura <contact@authentura.com>"
license-file = ["LICENSE", "4"]
assets = [
[
"target/release/codectrl",
"usr/bin/",
"755",
],
[
"README.md",
"usr/share/doc/codectrl/README",
"644",
],
]
depends = "libgtk-3-0"
[[package.metadata.generate-rpm.assets]]
source = "target/release/codectrl"
dest = "/usr/bin/codectrl"
mode = "755"
[[package.metadata.generate-rpm.assets]]
source = "README.md"
dest = "/usr/share/doc/codectrl/README"
mode = "644"
doc = true
[package.metadata.wix]
name = "CodeCTRL"
product-name = "CodeCTRL"
version = "1.0.0"