-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
35 lines (31 loc) · 909 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
33
34
35
[package]
authors = ["Andre-Philippe Paquet <[email protected]>"]
categories = ["command-line-interface", "email", "text-editors"]
description = "CLI for Exomind, a personal knowledge management tool"
edition = "2021"
keywords = ["knowledge-management", "mobile", "decentralized", "webapp"]
exclude = ["browsers", "ios", "web", "tools", "examples"]
license = "Apache-2.0"
name = "exomind"
repository = "https://github.com/appaquet/exomind"
version = "0.1.15"
[dependencies]
exomind-protos = {path = "./protos", version = "0.1.15"}
[workspace]
exclude = [
"3rd",
]
members = [
"app",
"protos",
"integrations/gmail",
"exm",
]
[profile.production]
inherits = "release"
codegen-units = 1
lto = "thin"
# [patch.crates-io]
# exocore = {path = "../exocore"}
# exocore = { git = "https://github.com/appaquet/exocore.git", tag = "v0.1.25" }
# exocore = {git = "https://github.com/appaquet/exocore.git"}