-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
77 lines (71 loc) · 1.86 KB
/
Cargo.toml
File metadata and controls
77 lines (71 loc) · 1.86 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
67
68
69
70
71
72
73
74
75
76
77
[package]
name = "kinic-cli"
version = "0.1.2"
edition = "2024"
[dependencies]
anyhow = "1.0.100"
axum = "0.7.9"
candid = "0.10.20"
clap = { version = "4.5.51", features = ["derive"] }
hex = "0.4.3"
ic-agent = { version = "0.44.3", features = ["ring"] }
keyring = { version = "3", features = [
"apple-native",
"windows-native",
"linux-native",
"sync-secret-service",
"vendored",
] }
pem = "3.0.6"
# security-framework = "3.5.1"
# security-framework-sys = "2.15.0"
tracing = "0.1.41"
tracing-subscriber = "0.3.20"
tokio = { version = "1.48", features = ["rt-multi-thread", "macros"] }
tokio-util = "0.7"
icrc-ledger-types = "0.1.12"
serde = { version = "1.0", features = ["derive"] }
schemars = "1.2.1"
thiserror = "2.0.17"
reqwest = { version = "0.12.7", default-features = false, features = ["json", "rustls-tls"] }
dotenvy = "0.15.7"
serde_json = "1.0.145"
rmcp = { version = "0.5.0", features = ["server", "transport-io"] }
pyo3 = { version = "0.27", features = ["extension-module", "abi3-py38"], optional = true }
pdf-extract = "0.8"
gag = "1.0"
ring = "0.17.14"
der = "0.7.10"
pkcs8 = "0.10.2"
ic-ed25519 = "0.2.0"
kinic-core = { path = "crates/kinic-core" }
tui-kit-host = { path = "tui/crates/tui-kit-host" }
tui-kit-runtime = { path = "tui/crates/tui-kit-runtime" }
tui-kit-model = { path = "tui/crates/tui-kit-model" }
tui-kit-render = { path = "tui/crates/tui-kit-render" }
[dev-dependencies]
serde_yaml = "0.9"
tower = "0.5"
[features]
default = []
python-bindings = ["pyo3"]
experimental = []
[lib]
name = "_lib"
path = "rust/lib.rs"
crate-type = ["cdylib", "rlib"]
[[bin]]
name = "kinic-cli"
path = "rust/cli.rs"
[workspace]
members = [
".",
"crates/kinic-core",
"tui/crates/tui-kit",
"tui/crates/tui-kit-host",
"tui/crates/tui-kit-runtime",
"tui/crates/tui-kit-model",
"tui/crates/tui-kit-render",
]
default-members = ["."]
resolver = "3"