-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
47 lines (41 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
[package]
authors = [
"Keagan McClelland <[email protected]>",
"Aiden McClelland <[email protected]>",
]
description = "Semver extension with optional 4th digit given patch semantics. Designed for package distributors"
documentation = "https://docs.rs/emver"
edition = "2021"
keywords = ["version", "semver", "embassy", "wasm"]
license = "MIT"
name = "exver"
readme = "README.md"
repository = "https://github.com/Start9Labs/exver-rs"
version = "0.2.0"
[package.metadata.wasm-pack.profile.release]
wasm-opt = false
[features]
default = ["wasm"]
wasm = ["js-sys", "wasm-bindgen"]
[lib]
crate-type = ["cdylib", "rlib"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
emver = "0.1.5"
smallvec = "1.13"
either = "1.6"
fp-core = "0.1"
js-sys = { version = "0.3.69", optional = true }
getrandom = { version = "*", features = ["js"] }
itertools = "0.13"
memchr = "2.7"
pest = "2.7"
pest_derive = "2.7"
serde = { version = "1", optional = true }
wasm-bindgen = { version = "0.2", optional = true, features = [
"enable-interning",
] }
yasi = "0.1.5"
[dev-dependencies]
proptest = "1.4.0"
serde_yaml = "0.9.14"