-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
61 lines (52 loc) · 1.77 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
[package]
name = "roto"
version.workspace = true
edition.workspace = true
authors.workspace = true
rust-version.workspace = true
license.workspace = true
description = "strongly-typed, compiled language for Rotonda"
documentation = "https://docs.rs/roto/"
repository = "https://github.com/NLnetLabs/roto/"
homepage = "https://www.nlnetlabs.nl/projects/routing/rotonda/"
keywords = ["routing", "bgp"]
categories = ["network-programming"]
[dependencies]
# ariadne is set to git because of some unpublished contributions made on
# Aug 5 2024. It should revert to crates.io when a version later than 4.1.0
# is released
ariadne = { version = "0.4.0", git = "https://github.com/zesterer/ariadne.git", rev = "4e5987cd55d954858da4a4130255eca1bf0bee5f" }
clap = { version = "4.4.6", features = ["derive"] }
env_logger = "0.10"
log = "0.4"
logos = "0.14.0"
inetnum = "0.1.0"
symbol_table = { version = "0.3.0", features = ["global"] }
string-interner = "0.17.0"
roto-macros = { path = "macros" }
[dependencies.cranelift]
version = "0.113.0"
features = ["frontend", "jit", "module", "native"]
git = "https://github.com/bytecodealliance/wasmtime.git"
rev = "1af294ea2d6c18c5a8fa9b4f272398b7c98e0c48"
[dependencies.cranelift-codegen]
version = "0.113.0"
features = ["disas"]
git = "https://github.com/bytecodealliance/wasmtime.git"
rev = "1af294ea2d6c18c5a8fa9b4f272398b7c98e0c48"
[dev-dependencies]
bytes = "1"
routecore = { version = "0.5.0-rc2-dev", features = ["bgp", "bmp", "serde"], git = "https://github.com/NLnetLabs/routecore.git"}
[profile.profiling]
inherits = "release"
lto = true
strip = "none"
debug = "full"
[workspace]
members = ["macros"]
[workspace.package]
version = "0.2.1-dev"
edition = "2021"
authors = ["NLnet Labs <[email protected]>"]
license = "BSD-3-Clause"
rust-version = "1.80"