-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
55 lines (48 loc) · 1.15 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
[package]
name = "octabot-rust-sdk"
version = { workspace = true }
authors = { workspace = true }
edition = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
rust-version = { workspace = true }
homepage = { workspace = true }
documentation = "https://github.com/OctaHive/octabot-rust-sdk#readme"
readme = "README.md"
description = """
The Octabot Rust SDK makes it easy to build plugins in Rust.
"""
[lib]
name = "octabot_rust_sdk"
[dependencies]
log = "0.4.25"
serde = "1.0.217"
serde_json = "1.0.138"
thiserror = "2.0.11"
wit-bindgen = { workspace = true }
[workspace]
resolver = "2"
members = [
"examples/hello-world",
"examples/keyvalue",
"examples/logging",
"examples/http",
]
[workspace.package]
version = "0.1.0"
authors = ["Roman Efremenko <[email protected]>"]
edition = "2021"
license = "MIT"
repository = "https://github.com/OctaHive/octabot-rust-sdk"
rust-version = "1.84"
homepage = "https://github.com/OctaHive/octabot-rust-sdk#readme"
[workspace.dependencies]
wit-bindgen = "0.39.0"
[profile.release]
lto = true
opt-level = 3
codegen-units = 1
panic = "abort"
strip = "debuginfo"
[features]
kv = ["log/kv"]