-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
97 lines (79 loc) · 2.18 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
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
[package]
name = "nu-jupyter-kernel"
version = "0.1.4+0.99.0"
edition.workspace = true
description = "A jupyter raw kernel for nu"
repository.workspace = true
license.workspace = true
keywords = ["jupyter-kernel", "jupyter", "nushell"]
categories = ["science"]
[workspace.package]
edition = "2021"
repository = "https://github.com/cptpiepmatz/nu-jupyter-kernel"
license = "MIT"
[package.metadata.jupyter]
protocol_version = "5.4"
[features]
default = ["plotting"]
plotting = ["nu-plotters"]
[workspace]
members = ["crates/nu_plugin_plotters"]
[workspace.dependencies]
nu-cmd-extra = "0.99.0"
nu-cmd-lang = "0.99.0"
nu-cmd-plugin = "0.99.0"
nu-command = { version = "0.99.0", features = ["plugin"] }
nu-engine = { version = "0.99.0"}
nu-parser = { version = "0.99.0", features = ["plugin"] }
nu-protocol = { version = "0.99.0", features = ["plugin"] }
nu-plugin = "0.99.0"
nuon = "0.99.0"
# plotting
[dependencies.nu-plotters]
package = "nu_plugin_plotters"
version = "0.1"
path = "crates/nu_plugin_plotters"
optional = true
[dependencies]
# nu
nu-cmd-extra.workspace = true
nu-cmd-lang.workspace = true
nu-cmd-plugin.workspace = true
nu-command.workspace = true
nu-engine.version = "0.99.0" # cannot publish if this inherits from workspace
nu-parser.workspace = true
nu-protocol.workspace = true
# Cryptography and Security
hmac = "0.12.1"
sha2 = "0.10.8"
# Data Handling and Serialization
bytes = "1.6.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
uuid = "1.8.0"
# Date and Time
chrono = "0.4.38"
# Derive Macros
clap = { version = "4.5.4", features = ["derive"] }
derive_more = "0.99.17"
strum = { version = "0.26", features = ["derive"] }
# Error Handling
thiserror = "1.0.58"
miette = { version = "7.2.0", features = ["fancy"] }
# Filesystem
dirs = "5.0.1"
# Formatting and Utilities
const_format = "0.2.32"
hex = "0.4.3"
# Media and Configuration Types
mime = "0.3.17"
mime_guess = "2.0.4"
static-toml = "1.2.0"
# Networking and IPC
os_pipe = { version = "1.1.5", features = ["io_safety"] }
zeromq = "0.4.0"
# Synchronization and Concurrency
parking_lot = "0.12.2"
tokio = { version = "1.39.2", features = ["rt", "macros", "parking_lot"] }
# Miscellaneous
atomic_enum = "0.3.0"