-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
52 lines (45 loc) · 1.74 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
[package]
name = "osakit"
version = "0.3.0"
edition = "2021"
authors = ["Marat Dulin <[email protected]>"]
description = "OSAKit macOS Framework adapted for Rust"
license = "MIT OR Apache-2.0"
readme = "README.md"
keywords = ["applescript", "javascript", "osa", "osakit", "osascript"]
repository = "https://github.com/mdevils/rust-osakit"
homepage = "https://github.com/mdevils/rust-osakit"
documentation = "https://docs.rs/osakit/"
categories = [
"os::macos-apis",
"api-bindings",
"accessibility"
]
[dependencies]
icrate = { version = "0.1.0", features = ["OSAKit", "OSAKit_OSAScript", "Foundation_NSString", "OSAKit_OSALanguage", "Foundation_NSURL", "OSAKit_OSALanguageInstance", "Foundation_NSDictionary", "Foundation_NSAppleEventDescriptor", "Foundation_NSValue", "Foundation_NSNumber", "Foundation_NSNull", "Foundation_NSDate"] }
objc2-foundation = { version = "0.2.2", features = ["NSAppleEventDescriptor", "NSArray", "NSDate", "NSDictionary", "NSEnumerator", "NSKeyValueCoding", "NSNull", "NSObject", "NSRange", "NSString", "NSValue"] }
objc2-osa-kit = { version = "0.2.2", features = ["OSALanguage", "OSALanguageInstance", "OSAScript"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
thiserror = "1"
[dev-dependencies]
libtest-mimic-collect = "0.3.1"
[lib]
test = false
[features]
stable = []
unstable = ["declare-script"]
full = ["stable", "unstable"]
# Unstable feature, use with caution, may change in future releases.
declare-script = []
# binaries for cargo-run-bin
[package.metadata.bin]
cargo-nextest = { version = "0.9.86-b.3", locked = true }
cargo-watch = { version = "8.5.2" }
[package.metadata.docs.rs]
default-target = "x86_64-apple-darwin"
features = ["full"]
[[test]]
name = "test"
harness = false
path = "src/test.rs"