File: Cargo.toml

package info (click to toggle)
rust-bounded-static 0.8.0-8
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 320 kB
  • sloc: makefile: 2; sh: 1
file content (25 lines) | stat: -rw-r--r-- 1,001 bytes parent folder | download
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
[workspace]
resolver = "2"
members = ["bounded-static", "bounded-static-derive"]

[workspace.package]
version = "0.8.0"
rust-version = "1.64.0"
edition = "2021"
authors = ["FujiApple <fujiapple852@gmail.com>"]
repository = "https://github.com/fujiapple852/bounded-static"
license = "Apache-2.0"
keywords = ["cow", "static", "bounded", "owned", "derive"]
categories = ["no-std", "rust-patterns", "data-structures", "memory-management"]

[workspace.dependencies]
bounded-static = { version = "0.8.0", path = "bounded-static" }
bounded-static-derive = { version = "0.8.0", path = "bounded-static-derive" }
syn = { version = "2.0.38", features = [ "full" ] }
quote = "1.0.33"
proc-macro2 = "1.0.69"
smol_str = { version = ">= 0.2.2, <= 0.3", default-features = false }
smallvec = { version = "1.13.2", default-features = false }
smartstring = { version = "1.0.1", default-features = false }
ahash = { version = "0.8.11", default-features = false }
chrono = { version = "0.4.38", default-features = false }